[tasks] Add user id to Profile

This commit is contained in:
2024-10-15 14:49:43 -04:00
parent ccf14c51bf
commit 04a7ba51e4
6 changed files with 78 additions and 4 deletions

View File

@ -33,6 +33,7 @@ class UserProfile(TimeStampedModel):
todoist_auth_key = EncryptedField(**BNULL)
todoist_state = EncryptedField(**BNULL)
todoist_user_id = models.CharField(max_length=100, **BNULL)
redirect_to_webpage = models.BooleanField(default=True)