From 0d3883fc76751d70871743e3eeb3d83cfe458e39 Mon Sep 17 00:00:00 2001 From: Andrea Lepori Date: Mon, 10 Jan 2022 18:40:12 +0100 Subject: add option to disable oauth --- manager/settings.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'manager') diff --git a/manager/settings.py b/manager/settings.py index 7649631..3432ae0 100644 --- a/manager/settings.py +++ b/manager/settings.py @@ -52,6 +52,8 @@ with open("version.txt", 'r') as f: BRANCH = check_output(["git", "rev-parse", "--abbrev-ref", "HEAD"]).decode() COMMIT_ID = check_output(["git", "rev-parse", "HEAD"]).decode() +OAUTH_ENABLED = True + # Application definition INSTALLED_APPS = [ -- cgit v1.2.1