Remove timer

This commit is contained in:
zandercymatics 2024-05-07 14:13:55 -06:00
parent b5784a1a88
commit ca2e2168aa
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
5 changed files with 114 additions and 103 deletions

View file

@ -24,6 +24,13 @@ class User(AbstractUser):
but can be customized later.
"""
class Meta:
"""Contains meta information about this class"""
indexes = [
models.Index(fields=["username"]),
models.Index(fields=["email"]),
]
class VerificationTypeChoices(models.TextChoices):
"""
Users achieve access to our system in a few different ways.