diff options
author | Quentin Gliech <quenting@element.io> | 2022-06-17 16:58:05 +0200 |
---|---|---|
committer | Patrick Cloke <clokep@users.noreply.github.com> | 2023-05-30 09:43:06 -0400 |
commit | c5cf1b421d8e0d765f812880ff41fe5d244a0919 (patch) | |
tree | e92ebe9c6c08222657945f762d477c88f4578ab3 /synapse/api/auth | |
parent | MSC2965: OIDC Provider discovery via well-known document (diff) | |
download | synapse-c5cf1b421d8e0d765f812880ff41fe5d244a0919.tar.xz |
Save the scopes in the requester
Diffstat (limited to 'synapse/api/auth')
-rw-r--r-- | synapse/api/auth/oauth_delegated.py | 1 |
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, ) |