From 28897cfa6dc3f8e26370626e4e68a7032af2fbf9 Mon Sep 17 00:00:00 2001 From: Darks Date: Wed, 5 Jun 2019 18:07:48 +0200 Subject: [PATCH] =?UTF-8?q?LOGIN=5FDISABLED=20d=C3=A9sactiv=C3=A9=20par=20?= =?UTF-8?q?d=C3=A9faut=20Pensez=20=C3=A0=20modifier=20=C3=A7a=20dans=20vot?= =?UTF-8?q?re=20config.py=20local=20pour=20tester,=20et=20=C3=A0=20d=C3=A9?= =?UTF-8?q?sindexer=20le=20fichier=20(pour=20pas=20commit=20l'inverse=20pa?= =?UTF-8?q?r=20m=C3=A9garde)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index ef9f044..8e366d7 100644 --- a/config.py +++ b/config.py @@ -7,7 +7,7 @@ class Config(object): 'postgresql+psycopg2://' + os.environ.get('USER') + ':@/pcv5' SQLALCHEMY_TRACK_MODIFICATIONS = False UPLOAD_FOLDER = './app/static/avatars' - LOGIN_DISABLED = True + LOGIN_DISABLED = False class V5Config(object):