diff options
author | Erik Johnston <erik@matrix.org> | 2014-08-15 10:26:35 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-08-15 10:26:35 +0100 |
commit | 5002efa31bb57a92b87b9d7319641d9b5a2a6047 (patch) | |
tree | 48a7c9561b43f807c14332505486c7d6129b830a /synapse/storage/__init__.py | |
parent | Fix up typos and correct sql queries (diff) | |
download | synapse-5002efa31bb57a92b87b9d7319641d9b5a2a6047.tar.xz |
Reimplement the get public rooms api to work with new DB schema
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r-- | synapse/storage/__init__.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py index f41c21dcd2..f62cee3c39 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -17,7 +17,7 @@ from twisted.internet import defer from synapse.api.events.room import ( RoomMemberEvent, MessageEvent, RoomTopicEvent, FeedbackEvent, - RoomConfigEvent + RoomConfigEvent, RoomNameEvent, ) from .directory import DirectoryStore @@ -52,6 +52,10 @@ class DataStore(RoomMemberStore, RoomStore, yield self._store_feedback(event) elif event.type == RoomConfigEvent.TYPE: yield self._store_room_config(event) + elif event.type == RoomNameEvent.TYPE: + yield self._store_room_name(event) + elif event.type == RoomTopicEvent.TYPE: + yield self._store_room_topic(event) yield self._store_event(event) |