From 3c1fbf2cf24a7dde3bcc38e28d4e9ae509a50404 Mon Sep 17 00:00:00 2001 From: "max.mehl" Date: Sun, 19 Dec 2021 22:52:12 +0100 Subject: [PATCH] force basic auth on all pages --- autoreply_editor/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/autoreply_editor/__init__.py b/autoreply_editor/__init__.py index 9724f03..64a9a3b 100644 --- a/autoreply_editor/__init__.py +++ b/autoreply_editor/__init__.py @@ -4,4 +4,5 @@ app = Flask(__name__) import autoreply_editor.main +app.config['BASIC_AUTH_FORCE'] = True app.config.from_pyfile("../config.py")