Move RoomContextHandler out of Handlers

This is in preparation for moving GET /context/ to a worker
This commit is contained in:
Erik Johnston 2018-07-18 15:29:45 +01:00
parent 8cb8df55e9
commit bacdf0cbf9
4 changed files with 12 additions and 6 deletions

View file

@ -18,7 +18,6 @@ from .directory import DirectoryHandler
from .federation import FederationHandler
from .identity import IdentityHandler
from .register import RegistrationHandler
from .room import RoomContextHandler
from .search import SearchHandler
@ -48,4 +47,3 @@ class Handlers(object):
self.admin_handler = AdminHandler(hs)
self.identity_handler = IdentityHandler(hs)
self.search_handler = SearchHandler(hs)
self.room_context_handler = RoomContextHandler(hs)