[boardgames] Start adding email scrobbling for board games
This commit is contained in:
@ -31,6 +31,7 @@ class UserProfile(TimeStampedModel):
|
||||
|
||||
task_context_tags_str = models.CharField(max_length=255, **BNULL)
|
||||
|
||||
bgstat_id = models.CharField(max_length=255, **BNULL)
|
||||
bgg_username = models.CharField(max_length=255, **BNULL)
|
||||
lichess_username = models.CharField(max_length=255, **BNULL)
|
||||
|
||||
@ -43,6 +44,11 @@ class UserProfile(TimeStampedModel):
|
||||
webdav_pass = EncryptedField(**BNULL)
|
||||
webdav_auto_import = models.BooleanField(default=False)
|
||||
|
||||
imap_url = models.CharField(max_length=255, **BNULL)
|
||||
imap_user = models.CharField(max_length=255, **BNULL)
|
||||
imap_pass = EncryptedField(**BNULL)
|
||||
imap_auto_import = models.BooleanField(default=False)
|
||||
|
||||
ntfy_url = models.CharField(max_length=255, **BNULL)
|
||||
ntfy_enabled = models.BooleanField(default=False)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user