From f30b39e43992b2cf7440d6831365b2ad6db325ae Mon Sep 17 00:00:00 2001 From: Mathieu Strypsteen Date: Wed, 25 Sep 2024 16:06:24 +0200 Subject: [PATCH] Use zauth.zeus.gent --- app/auth/zeus.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/auth/zeus.py b/app/auth/zeus.py index 23a5ae3..c793077 100644 --- a/app/auth/zeus.py +++ b/app/auth/zeus.py @@ -66,10 +66,10 @@ def init_oauth(app): client_id=app.config["ZEUS_KEY"], client_secret=app.config["ZEUS_SECRET"], request_token_params={}, - api_base_url="https://adams.ugent.be/oauth/api/", + api_base_url="https://zauth.zeus.gent/", access_token_method="POST", - access_token_url="https://adams.ugent.be/oauth/oauth2/token/", - authorize_url="https://adams.ugent.be/oauth/oauth2/authorize/", + access_token_url="https://zauth.zeus.gent/oauth/token/", + authorize_url="https://zauth.zeus.gent/oauth/authorize/", ) return oauth.create_client("zeus")