summary refs log tree commit diff
path: root/synapse/handlers/__init__.py
diff options
context:
space:
mode:
authorDavid Baker <dbkr@users.noreply.github.com>2016-05-31 11:32:44 +0100
committerDavid Baker <dbkr@users.noreply.github.com>2016-05-31 11:32:44 +0100
commit163e48c0e355375306351ff572cd2d41b7e8a492 (patch)
tree81ccb0ae8e2a57d0acacc1b604f65859875c6532 /synapse/handlers/__init__.py
parentFix to allow start with postgres (diff)
parentSplit out the room list handler (diff)
downloadsynapse-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/__init__.py')
-rw-r--r--synapse/handlers/__init__.py3
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)