From 0ba9c8e2da7e7f390f7ddfa0453a7a887a650750 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer Date: Fri, 21 Sep 2018 16:14:59 -0700 Subject: [PATCH] Update settings.py No longer require verification --- pinaxcon/settings.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pinaxcon/settings.py b/pinaxcon/settings.py index 58fcab6..af3e4e6 100644 --- a/pinaxcon/settings.py +++ b/pinaxcon/settings.py @@ -290,7 +290,8 @@ LOGIN_URL = "nbpy_login" # We need to explicitly switch on signups. ACCOUNT_OPEN_SIGNUP = bool(int(os.environ.get("DJANGO_ACCOUNT_OPEN_SIGNUP", "0"))) ACCOUNT_EMAIL_UNIQUE = True -ACCOUNT_EMAIL_CONFIRMATION_REQUIRED = False if DEBUG else True +#ACCOUNT_EMAIL_CONFIRMATION_REQUIRED = False if DEBUG else True +ACCOUNT_EMAIL_CONFIRMATION_REQUIRED = False ACCOUNT_LOGIN_REDIRECT_URL = "dashboard" ACCOUNT_LOGOUT_REDIRECT_URL = "home" ACCOUNT_EMAIL_CONFIRMATION_EXPIRE_DAYS = 2