summary refs log tree commit diff
path: root/synapse/api/constants.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-08-26 18:57:55 +0100
committerErik Johnston <erik@matrix.org>2014-08-26 18:57:55 +0100
commit93cff1668c5e42d45a8393a1ac59173c8101b375 (patch)
treeb20e984d79e5bc59fedbfac335c97fe349404b14 /synapse/api/constants.py
parentWIP: Completely change how event streaming and pagination work. This reflects... (diff)
parentPepper UT TODOs (diff)
downloadsynapse-93cff1668c5e42d45a8393a1ac59173c8101b375.tar.xz
Merge branch 'develop' of github.com:matrix-org/synapse into stream_refactor
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)