aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-08-05 17:20:42 -0500
committerFrederick Muriuki Muriithi2024-08-05 17:23:42 -0500
commit33a1274ddeee3ca27448d512c34ac0c5f66e7414 (patch)
treef80e7bd8c689ec86495c92491390807de828b80e /gn2/wqflask
parent720bedbaa239fe80604f3f64b50184cb43ba79f7 (diff)
downloadgenenetwork2-33a1274ddeee3ca27448d512c34ac0c5f66e7414.tar.gz
Fix URL
Diffstat (limited to 'gn2/wqflask')
-rw-r--r--gn2/wqflask/oauth2/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn2/wqflask/oauth2/client.py b/gn2/wqflask/oauth2/client.py
index 89d8a57e..a7d20f6b 100644
--- a/gn2/wqflask/oauth2/client.py
+++ b/gn2/wqflask/oauth2/client.py
@@ -153,7 +153,7 @@ def oauth2_client():
oauth2_clientid(),
oauth2_clientsecret(),
scope=SCOPE,
- token_endpoint=urljoin(authserver_uri(), "/auth/token"),
+ token_endpoint=urljoin(authserver_uri(), "auth/token"),
token_endpoint_auth_method="client_secret_post",
token=token,
update_token=__update_token__)