summary refs log tree commit diff
path: root/synapse/api
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-05-20 14:31:19 +0100
committerErik Johnston <erik@matrix.org>2019-05-20 14:31:19 +0100
commit1dff859d6aed58561a2b5913e5c9b897bbd3599c (patch)
treebc5a1b853370da63a0d9e090e67a3433aec0c321 /synapse/api
parentMerge pull request #5209 from matrix-org/erikj/reactions_base (diff)
downloadsynapse-1dff859d6aed58561a2b5913e5c9b897bbd3599c.tar.xz
Rename relation types to match MSC
Diffstat (limited to 'synapse/api')
-rw-r--r--synapse/api/constants.py4
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"