diff options
author | Erik Johnston <erik@matrix.org> | 2018-07-18 15:29:45 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-07-18 15:33:03 +0100 |
commit | bacdf0cbf9fdbf9bbab2420b86308830ac4e4592 (patch) | |
tree | 9f3561c921aada932160c4b0a485bedce6df120e /synapse/handlers/room.py | |
parent | Split MessageHandler into read only and writers (diff) | |
download | synapse-bacdf0cbf9fdbf9bbab2420b86308830ac4e4592.tar.xz |
Move RoomContextHandler out of Handlers
This is in preparation for moving GET /context/ to a worker
Diffstat (limited to 'synapse/handlers/room.py')
-rw-r--r-- | synapse/handlers/room.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/synapse/handlers/room.py b/synapse/handlers/room.py index f67512078b..6150b7e226 100644 --- a/synapse/handlers/room.py +++ b/synapse/handlers/room.py @@ -395,7 +395,11 @@ class RoomCreationHandler(BaseHandler): ) -class RoomContextHandler(BaseHandler): +class RoomContextHandler(object): + def __init__(self, hs): + self.hs = hs + self.store = hs.get_datastore() + @defer.inlineCallbacks def get_event_context(self, user, room_id, event_id, limit): """Retrieves events, pagination tokens and state around a given event |