diff options
author | David Baker <dbkr@users.noreply.github.com> | 2016-05-31 11:32:44 +0100 |
---|---|---|
committer | David Baker <dbkr@users.noreply.github.com> | 2016-05-31 11:32:44 +0100 |
commit | 163e48c0e355375306351ff572cd2d41b7e8a492 (patch) | |
tree | 81ccb0ae8e2a57d0acacc1b604f65859875c6532 /synapse/handlers | |
parent | Fix to allow start with postgres (diff) | |
parent | Split out the room list handler (diff) | |
download | synapse-163e48c0e355375306351ff572cd2d41b7e8a492.tar.xz |
Merge pull request #802 from matrix-org/dbkr/split_room_list_handler
Split out the room list handler
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/__init__.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/handlers/__init__.py b/synapse/handlers/__init__.py index 9442ae6f1d..0ac5d3da3a 100644 --- a/synapse/handlers/__init__.py +++ b/synapse/handlers/__init__.py @@ -17,7 +17,7 @@ from synapse.appservice.scheduler import AppServiceScheduler from synapse.appservice.api import ApplicationServiceApi from .register import RegistrationHandler from .room import ( - RoomCreationHandler, RoomListHandler, RoomContextHandler, + RoomCreationHandler, RoomContextHandler, ) from .room_member import RoomMemberHandler from .message import MessageHandler @@ -50,7 +50,6 @@ class Handlers(object): self.event_handler = EventHandler(hs) self.federation_handler = FederationHandler(hs) self.profile_handler = ProfileHandler(hs) - self.room_list_handler = RoomListHandler(hs) self.directory_handler = DirectoryHandler(hs) self.admin_handler = AdminHandler(hs) self.receipts_handler = ReceiptsHandler(hs) |