mirror of
https://github.com/TrentSPalmer/trentpalmerdotorg.git
synced 2024-11-16 07:01:31 -08:00
13 lines
380 B
Python
13 lines
380 B
Python
|
from django.db import models
|
||
|
from tp.models import UUIDAsIDModel
|
||
|
from django.contrib.auth.models import User
|
||
|
|
||
|
|
||
|
class Account(UUIDAsIDModel):
|
||
|
user = models.OneToOneField(User, on_delete=models.CASCADE, unique=True)
|
||
|
totp_key = models.CharField(max_length=16, null=True)
|
||
|
use_totp = models.BooleanField(default=False)
|
||
|
|
||
|
def __str__(self):
|
||
|
return str(self.user)
|