From a7bb0c4f47cccf31bdff3903669f44746a0e7d64 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Tue, 16 Dec 2014 16:45:31 +0100 Subject: [PATCH] Do not force email to be unique --- portail_citoyen2/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portail_citoyen2/settings.py b/portail_citoyen2/settings.py index f68311b..73e96d7 100644 --- a/portail_citoyen2/settings.py +++ b/portail_citoyen2/settings.py @@ -172,7 +172,7 @@ if 'AUTHENTIC2_URL' in os.environ: } SOCIALACOUNT_AUTO_SIGNUP = True ACCOUNT_LOGOUT_ON_GET = True -ACCOUNT_UNIQUE_EMAIL = True +ACCOUNT_UNIQUE_EMAIL = False MESSAGE_STORAGE = 'django.contrib.messages.storage.session.SessionStorage'