diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-07-24 11:46:09 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-07-24 11:46:09 +0100 |
commit | 30bfed5aa50317a7d05677c8de250d7d925938ac (patch) | |
tree | 256f995fef7eed858fff71920f706b866e7ac5e1 /synapse/handlers/room.py | |
parent | Merge remote-tracking branch 'origin/develop' into rav/remove_who_forgot_in_room (diff) | |
parent | Merge pull request #3591 from matrix-org/rav/logcontext_fixes (diff) | |
download | synapse-30bfed5aa50317a7d05677c8de250d7d925938ac.tar.xz |
Merge remote-tracking branch 'origin/develop' into rav/remove_who_forgot_in_room
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 |