Merge branch 'main' into za/2047-force-new-users-profile

This commit is contained in:
zandercymatics 2024-05-14 14:54:27 -06:00
commit 6c823f1ade
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
22 changed files with 865 additions and 120 deletions

View file

@ -22,6 +22,13 @@ class User(AbstractUser):
"""
A custom user model that performs identically to the default user model
but can be customized later.
This model uses signals [as defined in [signals.py](../../src/registrar/signals.py)].
When a new user is created through Login.gov, a contact object will be created and
associated on the contacts `user` field.
If the `user` object already exists, said user object
will be updated if any updates are made to it through Login.gov.
"""
class VerificationTypeChoices(models.TextChoices):