mirror of
https://github.com/TrentSPalmer/trentpalmerdotorg.git
synced 2024-11-14 14:21:30 -08:00
20 lines
512 B
Python
20 lines
512 B
Python
from django.db import models
|
|
from tp.models import UUIDAsIDModel
|
|
from django.contrib.auth.models import User
|
|
|
|
|
|
class EmailWhiteList(UUIDAsIDModel):
|
|
email = models.EmailField(unique=True)
|
|
|
|
def __str__(self):
|
|
return self.email
|
|
|
|
|
|
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)
|