diff options
author | Erik Johnston <erik@matrix.org> | 2019-05-20 14:31:19 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-05-20 14:31:19 +0100 |
commit | 1dff859d6aed58561a2b5913e5c9b897bbd3599c (patch) | |
tree | bc5a1b853370da63a0d9e090e67a3433aec0c321 /synapse/api | |
parent | Merge pull request #5209 from matrix-org/erikj/reactions_base (diff) | |
download | synapse-1dff859d6aed58561a2b5913e5c9b897bbd3599c.tar.xz |
Rename relation types to match MSC
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/constants.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py index 28862a1d25..6b347b1749 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py @@ -125,5 +125,5 @@ class RelationTypes(object): """The types of relations known to this server. """ ANNOTATION = "m.annotation" - REPLACES = "m.replaces" - REFERENCES = "m.references" + REPLACE = "m.replace" + REFERENCE = "m.reference" |