diff options
author | Neil Johnson <neil@matrix.org> | 2018-07-30 15:55:57 +0100 |
---|---|---|
committer | Neil Johnson <neil@matrix.org> | 2018-07-30 15:55:57 +0100 |
commit | 251e6c1210087069a6133140519de80a4ddf218a (patch) | |
tree | 2550ffc60811f48a100ea185624f01a00a671535 /synapse/api | |
parent | make /context lazyload & filter aware (#3567) (diff) | |
download | synapse-251e6c1210087069a6133140519de80a4ddf218a.tar.xz |
limit register and sign in on number of monthly users
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/errors.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/api/errors.py b/synapse/api/errors.py index 6074df292f..14f5540280 100644 --- a/synapse/api/errors.py +++ b/synapse/api/errors.py @@ -55,6 +55,7 @@ class Codes(object): SERVER_NOT_TRUSTED = "M_SERVER_NOT_TRUSTED" CONSENT_NOT_GIVEN = "M_CONSENT_NOT_GIVEN" CANNOT_LEAVE_SERVER_NOTICE_ROOM = "M_CANNOT_LEAVE_SERVER_NOTICE_ROOM" + MAU_LIMIT_EXCEEDED = "M_MAU_LIMIT_EXCEEDED" class CodeMessageException(RuntimeError): |