add show_guided_tour value to User
This boolean value indicates whether the user wishes to be show the guided tour. It defaults to True but will be able to be easily set to False.
This commit is contained in:
parent
2b431986d6
commit
80c71928c3
4 changed files with 28 additions and 1 deletions
|
@ -143,6 +143,7 @@ class User(OrderedCollectionPageMixin, AbstractUser):
|
|||
show_goal = models.BooleanField(default=True)
|
||||
show_suggested_users = models.BooleanField(default=True)
|
||||
discoverable = fields.BooleanField(default=False)
|
||||
show_guided_tour = fields.BooleanField(default=True)
|
||||
|
||||
# feed options
|
||||
feed_status_types = ArrayField(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue