diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-08-26 17:50:28 +0100 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-08-26 17:50:28 +0100 |
commit | 5dd8087ea41fce6a9153d7b275c752bd3e409592 (patch) | |
tree | 8ccec4c3752deede87488a29d73db238bcfa9087 /synapse/api/constants.py | |
parent | Merge branch 'client_server_url_rename' into develop (diff) | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse into client_server_ur... (diff) | |
download | synapse-5dd8087ea41fce6a9153d7b275c752bd3e409592.tar.xz |
Merge branch 'client_server_url_rename' into develop
Diffstat (limited to 'synapse/api/constants.py')
-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 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) |