summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorDavid Teller <D.O.Teller@gmail.com>2022-05-27 15:13:29 +0200
committerGitHub <noreply@github.com>2022-05-27 13:13:29 +0000
commit888eb736a15035c94676eb60da6b6fabb642e252 (patch)
tree68c18efcdcebc89ad40028283ea0c99b1560a3b5 /synapse
parentClean-up some receipts code (#12888) (diff)
downloadsynapse-888eb736a15035c94676eb60da6b6fabb642e252.tar.xz
Add code M_USER_ACCOUNT_SUSPENDED, as per MSC3823. (#12845)
Signed-off-by: David Teller <davidt@element.io>
Co-authored-by: Brendan Abolivier <babolivier@matrix.org>
Diffstat (limited to 'synapse')
-rw-r--r--synapse/api/errors.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/synapse/api/errors.py b/synapse/api/errors.py

index 6650e826d5..05e96843cf 100644 --- a/synapse/api/errors.py +++ b/synapse/api/errors.py
@@ -79,6 +79,13 @@ class Codes(str, Enum): WEAK_PASSWORD = "M_WEAK_PASSWORD" INVALID_SIGNATURE = "M_INVALID_SIGNATURE" USER_DEACTIVATED = "M_USER_DEACTIVATED" + + # The account has been suspended on the server. + # By opposition to `USER_DEACTIVATED`, this is a reversible measure + # that can possibly be appealed and reverted. + # Part of MSC3823. + USER_ACCOUNT_SUSPENDED = "M_ORG_MATRIX_MSC3823_USER_ACCOUNT_SUSPENDED" + BAD_ALIAS = "M_BAD_ALIAS" # For restricted join rules. UNABLE_AUTHORISE_JOIN = "M_UNABLE_TO_AUTHORISE_JOIN"