diff options
author | Sean Smith <ssmith@iol.unh.edu> | 2021-03-24 17:22:54 -0400 |
---|---|---|
committer | Sean Smith <ssmith@iol.unh.edu> | 2021-03-29 16:21:47 -0400 |
commit | d007fa661e2faf77e70cb75c8d520941e907ebf7 (patch) | |
tree | 69b83bf903635768ac8614bfd799de998bb046ea /src/account/models.py | |
parent | f6753ae2c5f54fb79375214590e565218b1bf0d7 (diff) |
Remove exposure of users on dashboard
Signed-off-by: Sean Smith <ssmith@iol.unh.edu>
Change-Id: I83b93d9247a7eafb54e4a5761d1423a504d86400
Diffstat (limited to 'src/account/models.py')
-rw-r--r-- | src/account/models.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/account/models.py b/src/account/models.py index 2a7b017..b71f0ac 100644 --- a/src/account/models.py +++ b/src/account/models.py @@ -54,6 +54,8 @@ class UserProfile(models.Model): full_name = models.CharField(max_length=100, null=True, blank=True, default='') booking_privledge = models.BooleanField(default=False) + public_user = models.BooleanField(default=False) + class Meta: db_table = 'user_profile' |