diff options
author | Frederick Muriuki Muriithi | 2023-03-10 04:25:30 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-03-10 04:26:05 +0300 |
commit | 33a4e6aea5ecd7ceefdca90c2d86a971e5cf3d22 (patch) | |
tree | eae648c30393910a46bc7700cd980cb34745feb0 | |
parent | d80e752cd5554b18b183c8797fa34d97919104f1 (diff) | |
download | genenetwork2-33a4e6aea5ecd7ceefdca90c2d86a971e5cf3d22.tar.gz |
oauth2: Extend scope for GN2 oauth2 client.
-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 f712e54d..70cdfbe2 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 user" +SCOPE = "profile group role resource register-client user introspect migrate-data" def oauth2_client(): config = app.config |