mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-22 17:46:08 +03:00
Handle the Synapse admin scope
This commit is contained in:
parent
c5cf1b421d
commit
7628dbf4e9
1 changed files with 3 additions and 0 deletions
|
@ -140,6 +140,9 @@ class OAuthDelegatedAuth(BaseAuth):
|
|||
resp = json_decoder.decode(resp_body.decode("utf-8"))
|
||||
return IntrospectionToken(**resp)
|
||||
|
||||
async def is_server_admin(self, requester: Requester) -> bool:
|
||||
return "urn:synapse:admin:*" in requester.scope
|
||||
|
||||
async def get_user_by_req(
|
||||
self,
|
||||
request: SynapseRequest,
|
||||
|
|
Loading…
Reference in a new issue