Skip to content

Commit

Permalink
default tours to disabled for all users
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenbhemmy committed Dec 15, 2023
1 parent ad1f69d commit a01275c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lms/djangoapps/user_tours/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class CourseHomeChoices(models.TextChoices):
NO_TOUR = 'no-tour', _('Do not show user tour')

course_home_tour_status = models.CharField(
max_length=50, choices=CourseHomeChoices.choices, default=CourseHomeChoices.NEW_USER_TOUR
max_length=50, choices=CourseHomeChoices.choices, default=CourseHomeChoices.NO_TOUR
)
show_courseware_tour = models.BooleanField(default=True)
show_courseware_tour = models.BooleanField(default=False)
user = models.OneToOneField(User, related_name='tour', on_delete=models.CASCADE)

0 comments on commit a01275c

Please sign in to comment.