mirror of
https://github.com/FAUSheppy/python-flask-picture-factory
synced 2025-12-06 07:01:37 +01:00
fix: user configured OIDC_CLIENT_SECRETS file
This commit is contained in:
@@ -14,7 +14,7 @@ app = flask.Flask("Picture factory app", static_folder=None)
|
|||||||
if os.path.isfile("oidc.json"):
|
if os.path.isfile("oidc.json"):
|
||||||
with open("oidc.json") as f:
|
with open("oidc.json") as f:
|
||||||
app.config |= json.load(f)
|
app.config |= json.load(f)
|
||||||
if not os.path.isfile("client_secrets.json"):
|
if not os.path.isfile(app.config["OIDC_CLIENT_SECRETS"]):
|
||||||
raise ValueError("client_secrets.json file is missing in project root")
|
raise ValueError("client_secrets.json file is missing in project root")
|
||||||
else:
|
else:
|
||||||
raise ValueError("OIDC required by environment but not oidc.json file found")
|
raise ValueError("OIDC required by environment but not oidc.json file found")
|
||||||
|
|||||||
Reference in New Issue
Block a user