From a0bc6e7e3a175cb05180eaad81f69b868e5d124a Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Fri, 9 Sep 2016 21:00:32 +0200 Subject: [PATCH] ENABLE_ACCOUNT_LOGIN=False by default --- umap/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umap/settings/base.py b/umap/settings/base.py index b7faa0df..1cbe5cfd 100644 --- a/umap/settings/base.py +++ b/umap/settings/base.py @@ -142,7 +142,7 @@ MIDDLEWARE_CLASSES = ( # Auth / security # ============================================================================= -ENABLE_ACCOUNT_LOGIN = True +ENABLE_ACCOUNT_LOGIN = False AUTHENTICATION_BACKENDS += ( )