diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-05-22 17:27:03 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-05-22 17:27:27 +0100 |
commit | 08bfc48abf8c138b540ede6c816338c044130dec (patch) | |
tree | 2133935b03dd6914a568b956f7ac874391296e35 /synapse/api/errors.py | |
parent | comment typo (diff) | |
download | synapse-08bfc48abf8c138b540ede6c816338c044130dec.tar.xz |
custom error code for not leaving server notices room
Diffstat (limited to 'synapse/api/errors.py')
-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 aca804280c..e6ad3768f0 100644 --- a/synapse/api/errors.py +++ b/synapse/api/errors.py @@ -53,6 +53,7 @@ class Codes(object): INVALID_USERNAME = "M_INVALID_USERNAME" 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" class CodeMessageException(RuntimeError): |