Feedback: Removed FeedbackRestServlet. Modified keys on FeedbackEvent. Expanded the feedback constants to fully explain what type of feedback they are.

This commit is contained in:
Kegan Dougal 2014-08-26 17:49:46 +01:00
parent 5a93bfe1f0
commit 5a3df1d029
4 changed files with 13 additions and 81 deletions

View file

@ -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)