Skip to content

Commit 5329c76

Browse files
committed
Comment with contacts field...
1 parent e8a421b commit 5329c76

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

users/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class CustomUser(AbstractUser):
8383
city = models.CharField(max_length=255, null=True, blank=True)
8484
organization = models.CharField(max_length=255, null=True, blank=True)
8585
speciality = models.CharField(max_length=255, null=True, blank=True)
86-
# default=null - it means that onboarding is completed
86+
# contacts = models.JSONField(null=True, blank=True)
8787
# fixme: mb replace to ChoiceField or FSMField(Finite State Machine)
8888
onboarding_stage = models.PositiveSmallIntegerField(
8989
null=True,

0 commit comments

Comments
 (0)