Add new storage function to slave store

pull/1989/head
Erik Johnston 2017-03-13 16:24:54 +00:00
parent 0162994983
commit 45c7f12d2a
1 changed files with 4 additions and 0 deletions

View File

@ -109,6 +109,10 @@ class SlavedEventStore(BaseSlavedStore):
get_recent_event_ids_for_room = (
StreamStore.__dict__["get_recent_event_ids_for_room"]
)
get_current_state_ids = (
StateStore.__dict__["get_current_state_ids"]
)
has_room_changed_since = DataStore.has_room_changed_since.__func__
get_unread_push_actions_for_user_in_range_for_http = (
DataStore.get_unread_push_actions_for_user_in_range_for_http.__func__