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:49:46 +0100
committerKegan Dougal <kegan@matrix.org>2014-08-26 17:49:46 +0100
commit5a3df1d0299296eaab051310678c1e8db2040ac1 (patch)
tree8ccec4c3752deede87488a29d73db238bcfa9087 /synapse/api/constants.py
parentRemoved MessageRestServlet, use RoomSendEventRestServlet instead. Updated cmd... (diff)
downloadsynapse-5a3df1d0299296eaab051310678c1e8db2040ac1.tar.xz
Feedback: Removed FeedbackRestServlet. Modified keys on FeedbackEvent. Expanded the feedback constants to fully explain what type of feedback they are.
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)