Do not force email to be unique

This commit is contained in:
Benjamin Dauvergne 2014-12-16 16:45:31 +01:00
parent adf9dccb09
commit a7bb0c4f47
1 changed files with 1 additions and 1 deletions

View File

@ -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'