summary refs log tree commit diff
path: root/synapse/api
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-09-29 13:35:38 +0100
committerErik Johnston <erik@matrix.org>2014-09-29 13:35:38 +0100
commitc65306f8779d480a10b6ce318e73b458538e1eef (patch)
tree5d4b8b93b37f60b77cfecac95bc0ce9e9356918e /synapse/api
parentSYN-48: Track User-Agents as well as IPs for client devices. (diff)
downloadsynapse-c65306f8779d480a10b6ce318e73b458538e1eef.tar.xz
Add auth check to test if a user is an admin or not.
Diffstat (limited to 'synapse/api')
-rw-r--r--synapse/api/auth.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py

index 739f77afd4..5e3ea5b8c5 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py
@@ -259,6 +259,9 @@ class Auth(object): raise AuthError(403, "Unrecognised access token.", errcode=Codes.UNKNOWN_TOKEN) + def is_server_admin(self, user): + return self.store.is_server_admin(user) + @defer.inlineCallbacks @log_function def _can_send_event(self, event):