diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2023-02-15 11:47:57 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-15 11:47:57 +0000 |
commit | 5febf88b6c5194582f427142dc0850625547c0d9 (patch) | |
tree | e3a8c69949667254091f44dd50a2d104f264c933 /synapse/api | |
parent | Fix order of partial state tables when purging (#15068) (diff) | |
download | synapse-5febf88b6c5194582f427142dc0850625547c0d9.tar.xz |
Update the error code for duplicate annotation (#15075)
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/errors.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/api/errors.py b/synapse/api/errors.py index 9235ce6536..e1737de59b 100644 --- a/synapse/api/errors.py +++ b/synapse/api/errors.py @@ -108,6 +108,10 @@ class Codes(str, Enum): USER_AWAITING_APPROVAL = "ORG.MATRIX.MSC3866_USER_AWAITING_APPROVAL" + # Attempt to send a second annotation with the same event type & annotation key + # MSC2677 + DUPLICATE_ANNOTATION = "M_DUPLICATE_ANNOTATION" + class CodeMessageException(RuntimeError): """An exception with integer code and message string attributes. |