Hide goal using database field instead of localstorage

This commit is contained in:
Mouse Reeve
2021-03-18 09:00:25 -07:00
parent 284366e46f
commit 9a20b5dbd5
7 changed files with 38 additions and 6 deletions

View File

@ -102,6 +102,7 @@ class User(OrderedCollectionPageMixin, AbstractUser):
updated_date = models.DateTimeField(auto_now=True)
last_active_date = models.DateTimeField(auto_now=True)
manually_approves_followers = fields.BooleanField(default=False)
show_goal = models.BooleanField(default=True)
name_field = "username"