summary refs log tree commit diff
path: root/synapse/api/constants.py
diff options
context:
space:
mode:
authorKegan Dougal <kegan@matrix.org>2014-08-26 17:50:28 +0100
committerKegan Dougal <kegan@matrix.org>2014-08-26 17:50:28 +0100
commit5dd8087ea41fce6a9153d7b275c752bd3e409592 (patch)
tree8ccec4c3752deede87488a29d73db238bcfa9087 /synapse/api/constants.py
parentMerge branch 'client_server_url_rename' into develop (diff)
parentMerge branch 'develop' of github.com:matrix-org/synapse into client_server_ur... (diff)
downloadsynapse-5dd8087ea41fce6a9153d7b275c752bd3e409592.tar.xz
Merge branch 'client_server_url_rename' into develop
Diffstat (limited to 'synapse/api/constants.py')
-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 2af5424029..f69f2445a2 100644
--- a/synapse/api/constants.py
+++ b/synapse/api/constants.py
@@ -31,8 +31,8 @@ class Feedback(object):
     """Represents the types of feedback a user can send in response to a
     message."""
 
-    DELIVERED = u"d"
-    READ = u"r"
+    DELIVERED = u"delivered"
+    READ = u"read"
     LIST = (DELIVERED, READ)