From 0955751be391c8325e2cbb8ca1a83c083a5985c0 Mon Sep 17 00:00:00 2001 From: Benni Baermann Date: Thu, 9 Sep 2021 10:12:06 +0200 Subject: [PATCH] ACCOUNT_EMAIL_REQUIRED = True not longer needed, TODO changed --- TODO | 4 ---- eva/settings_development.py | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/TODO b/TODO index 4b05b0c..9d40f66 100644 --- a/TODO +++ b/TODO @@ -6,8 +6,6 @@ * Maintainance-Anzeige im Debugmodus, damit niemand denkt, es würden mails verschickt. -* logging in production? print landet nicht in der logdatei? - * better error handling with mail sending. * Der Punkt "Braucht Keinen Arbeitsplatz Weil Home-Office" ist ein bisschen verwirrend, meiner Meinung nach. In einem Formular gerade steht "Braucht Keinen Arbeitsplatz Weil Home-Office: Nein" @@ -16,5 +14,3 @@ Es ist nicht so eindeutig ob das Nein emphatisch ist "Nein, braucht keinen" oder eine doppelte Negation des satzes. "Keinen Arbeitsplatz? Nein -> braucht Arbeitsplatz" Ich denke, mit so was wie "Braucht Arbeitsplatz in der GS?", bleibt's eindeutig - -* Tastaturlayout should be in mail to IT diff --git a/eva/settings_development.py b/eva/settings_development.py index 490d72a..473fc74 100644 --- a/eva/settings_development.py +++ b/eva/settings_development.py @@ -151,6 +151,6 @@ AUTHENTICATION_BACKENDS = ( SITE_ID = 1 ACCOUNT_EMAIL_VERIFICATION = 'none' -ACCOUNT_EMAIL_REQUIRED = True +# ACCOUNT_EMAIL_REQUIRED = True LOGIN_REDIRECT_URL = 'home' ACCOUNT_LOGOUT_ON_GET = True