mirror of
https://github.com/TrentSPalmer/trentpalmerdotorg.git
synced 2025-08-22 21:43:57 -07:00
pyotp.random_base32() has increased their default output length
This commit is contained in:
@@ -18,7 +18,7 @@ class EmailWhiteList(UUIDAsIDModel):
|
||||
|
||||
class Account(UUIDAsIDModel):
|
||||
user = models.OneToOneField(User, on_delete=models.CASCADE, unique=True)
|
||||
totp_key = models.CharField(max_length=16, null=True)
|
||||
totp_key = models.CharField(max_length=32, null=True)
|
||||
use_totp = models.BooleanField(default=False)
|
||||
twitter_handle = models.CharField(max_length=64, default='@Twitter')
|
||||
|
||||
|
Reference in New Issue
Block a user