diff options
author | Matthew Lemon <y@yulqen.org> | 2024-05-15 21:05:07 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-05-15 21:05:07 +0100 |
commit | 96af6c6a9df9fe90b0aed141c0ad7b10ae97bee4 (patch) | |
tree | a2a401943470ccf1c8c91e9be3a2b7380d876926 /config | |
parent | 67eda2e561cf688ff4cc7d71a7dd1dddff09edd4 (diff) |
Removes email validation for allauth for local dev
Diffstat (limited to 'config')
-rw-r--r-- | config/settings/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/settings/base.py b/config/settings/base.py index 16d79eb..2bef881 100644 --- a/config/settings/base.py +++ b/config/settings/base.py @@ -304,7 +304,7 @@ ACCOUNT_USERNAME_REQUIRED = False # https://docs.allauth.org/en/latest/account/configuration.html ACCOUNT_USER_MODEL_USERNAME_FIELD = None # https://docs.allauth.org/en/latest/account/configuration.html -ACCOUNT_EMAIL_VERIFICATION = "mandatory" +#ACCOUNT_EMAIL_VERIFICATION = "mandatory" # https://docs.allauth.org/en/latest/account/configuration.html ACCOUNT_ADAPTER = "pyblackbird_cc.users.adapters.AccountAdapter" # https://docs.allauth.org/en/latest/account/forms.html |