summary refs log tree commit diff
path: root/synapse/api
diff options
context:
space:
mode:
authorQuentin Gliech <quenting@element.io>2022-06-17 16:58:05 +0200
committerPatrick Cloke <clokep@users.noreply.github.com>2023-05-30 09:43:06 -0400
commitc5cf1b421d8e0d765f812880ff41fe5d244a0919 (patch)
treee92ebe9c6c08222657945f762d477c88f4578ab3 /synapse/api
parentMSC2965: OIDC Provider discovery via well-known document (diff)
downloadsynapse-c5cf1b421d8e0d765f812880ff41fe5d244a0919.tar.xz
Save the scopes in the requester
Diffstat (limited to 'synapse/api')
-rw-r--r--synapse/api/auth/oauth_delegated.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/api/auth/oauth_delegated.py b/synapse/api/auth/oauth_delegated.py
index b3b5c29a94..2715127e32 100644
--- a/synapse/api/auth/oauth_delegated.py
+++ b/synapse/api/auth/oauth_delegated.py
@@ -224,4 +224,5 @@ class OAuthDelegatedAuth(BaseAuth):
         return create_requester(
             user_id=user_id,
             device_id=device_id,
+            scope=scope,
         )