diff options
author | Frederick Muriuki Muriithi | 2023-03-07 10:42:28 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-03-07 10:42:28 +0300 |
commit | c7aa2ef757995e4b96d616033b0970ff58a7af24 (patch) | |
tree | 8439e0b6e06e60f24b272b25e3ce424577942a16 | |
parent | bc2300dc769eb0f4d22aab9a8caebcc1eda9a469 (diff) | |
download | genenetwork2-c7aa2ef757995e4b96d616033b0970ff58a7af24.tar.gz |
oauth2: Include 'user' in requested scopes.
-rw-r--r-- | wqflask/wqflask/oauth2/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/oauth2/client.py b/wqflask/wqflask/oauth2/client.py index 2bf3f94d..f712e54d 100644 --- a/wqflask/wqflask/oauth2/client.py +++ b/wqflask/wqflask/oauth2/client.py @@ -6,7 +6,7 @@ from pymonad.maybe import Just, Maybe, Nothing from pymonad.either import Left, Right, Either from authlib.integrations.requests_client import OAuth2Session -SCOPE = "profile group role resource register-client" +SCOPE = "profile group role resource register-client user" def oauth2_client(): config = app.config |