diff options
author | Neil Johnson <neil@matrix.org> | 2018-08-17 14:04:15 +0100 |
---|---|---|
committer | Neil Johnson <neil@matrix.org> | 2018-08-17 14:04:15 +0100 |
commit | b5f638f1f478d2e7912d7afc454e881f4677d78c (patch) | |
tree | 2194c747d8c267e2d1f5c490faf80867dba61fc7 /synapse/handlers/room.py | |
parent | flake8 (diff) | |
parent | Merge pull request #3708 from matrix-org/neilj/resource_Limit_block_event_cre... (diff) | |
download | synapse-b5f638f1f478d2e7912d7afc454e881f4677d78c.tar.xz |
Merge branch 'develop' of github.com:matrix-org/synapse into neilj/server_notices_on_blocking
Diffstat (limited to 'synapse/handlers/room.py')
-rw-r--r-- | synapse/handlers/room.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/handlers/room.py b/synapse/handlers/room.py index 6a17c42238..c3f820b975 100644 --- a/synapse/handlers/room.py +++ b/synapse/handlers/room.py @@ -98,9 +98,13 @@ class RoomCreationHandler(BaseHandler): Raises: SynapseError if the room ID couldn't be stored, or something went horribly wrong. + ResourceLimitError if server is blocked to some resource being + exceeded """ user_id = requester.user.to_string() + self.auth.check_auth_blocking(user_id) + if not self.spam_checker.user_may_create_room(user_id): raise SynapseError(403, "You are not permitted to create rooms") |