diff options
| author | Bobby <[email protected]> | 2024-08-26 01:29:48 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2024-08-26 01:29:48 -0400 |
| commit | cf95086a9deac841473dd91440f9d1c89ec42024 (patch) | |
| tree | 553965a1fbab72bdde45dcd5aa8851585e18f0fb /authentication/models.py | |
| parent | 20ecf8402cbd6053efbf048a59b0e62e0d948d16 (diff) | |
| download | yugen-cf95086a9deac841473dd91440f9d1c89ec42024.tar.xz yugen-cf95086a9deac841473dd91440f9d1c89ec42024.zip | |
connect MAL and smart sync
Diffstat (limited to 'authentication/models.py')
| -rw-r--r-- | authentication/models.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/authentication/models.py b/authentication/models.py index 8b310b7..bce7f8e 100644 --- a/authentication/models.py +++ b/authentication/models.py @@ -13,3 +13,7 @@ class User(AbstractUser): discord_banner = models.CharField(max_length=255, blank=True) discord_global_name = models.CharField(max_length=255) discord_guild_name = models.CharField(max_length=255, blank=True) + mal_token_type = models.CharField(max_length=255, blank=True) + mal_token_expires_in = models.DateTimeField(null=True, blank=True) + mal_access_token = models.CharField(max_length=1024, blank=True) + mal_refresh_token = models.CharField(max_length=1024, blank=True) |
