diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-08-26 09:26:07 +0100 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-08-26 09:26:07 +0100 |
commit | cab3095803db0c046f414959d12e3549505f54c4 (patch) | |
tree | a00409373497d934a2f4bbc488f5eef3d5421420 /synapse/api/constants.py | |
parent | Impl: /rooms/roomid/state/eventtype/state_key - Renamed RoomTopicRestServlet ... (diff) | |
download | synapse-cab3095803db0c046f414959d12e3549505f54c4.tar.xz |
Removed member list servlet: now using generic state paths.
Diffstat (limited to 'synapse/api/constants.py')
-rw-r--r-- | synapse/api/constants.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py index 1ff1af76ec..2af5424029 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py @@ -23,6 +23,7 @@ class Membership(object): JOIN = u"join" KNOCK = u"knock" LEAVE = u"leave" + LIST = (INVITE, JOIN, KNOCK, LEAVE) class Feedback(object): |