aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2023-03-10 04:25:30 +0300
committerFrederick Muriuki Muriithi2023-03-10 04:26:05 +0300
commit33a4e6aea5ecd7ceefdca90c2d86a971e5cf3d22 (patch)
treeeae648c30393910a46bc7700cd980cb34745feb0 /wqflask
parentd80e752cd5554b18b183c8797fa34d97919104f1 (diff)
downloadgenenetwork2-33a4e6aea5ecd7ceefdca90c2d86a971e5cf3d22.tar.gz
oauth2: Extend scope for GN2 oauth2 client.
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/wqflask/oauth2/client.py2
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