diff options
author | Neil Johnson <neil@matrix.org> | 2018-08-09 11:42:02 +0100 |
---|---|---|
committer | Neil Johnson <neil@matrix.org> | 2018-08-09 11:42:02 +0100 |
commit | 3dce9050cf4b175bc84b5fa45f4c480ac5ddeec9 (patch) | |
tree | c371df3e91aa4e6c9c6d573a690e1ab7748def44 /synapse/api/auth.py | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse into neilj/mau_sync_b... (diff) | |
parent | Merge pull request #3655 from matrix-org/neilj/disable_hs (diff) | |
download | synapse-3dce9050cf4b175bc84b5fa45f4c480ac5ddeec9.tar.xz |
Merge branch 'develop' of github.com:matrix-org/synapse into neilj/mau_sync_block
Diffstat (limited to 'synapse/api/auth.py')
-rw-r--r-- | synapse/api/auth.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py index 91b23ff1d7..9c62ec4374 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py @@ -779,6 +779,10 @@ class Auth(object): """Checks if the user should be rejected for some external reason, such as monthly active user limiting or global disable flag """ + if self.hs.config.hs_disabled: + raise AuthError( + 403, self.hs.config.hs_disabled_message, errcode=Codes.HS_DISABLED + ) if self.hs.config.limit_usage_by_mau is True: current_mau = yield self.store.get_monthly_active_count() if current_mau >= self.hs.config.max_mau_value: |