fix: restore tubco user onboarding access
This commit is contained in:
@@ -61,6 +61,9 @@ class UserProfile(models.Model):
|
||||
totp_secret = models.CharField(max_length=64, blank=True, default='')
|
||||
totp_enabled = models.BooleanField(default=False)
|
||||
totp_confirmed_at = models.DateTimeField(null=True, blank=True)
|
||||
temporary_role_key = models.CharField(max_length=64, blank=True, default='')
|
||||
temporary_role_expires_at = models.DateTimeField(null=True, blank=True)
|
||||
temporary_role_reason = models.TextField(blank=True, default='')
|
||||
totp_recovery_codes = models.JSONField(default=list, blank=True)
|
||||
notification_preferences = models.JSONField(default=dict, blank=True)
|
||||
updated_at = models.DateTimeField(auto_now=True)
|
||||
|
||||
Reference in New Issue
Block a user