mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Rename message handler's new snapshot_room to room_initial_sync() as that better suits its purpose
This commit is contained in:
parent
e9f587ecba
commit
75e95c45a2
@ -295,7 +295,7 @@ class MessageHandler(BaseHandler):
|
||||
defer.returnValue(ret)
|
||||
|
||||
@defer.inlineCallbacks
|
||||
def snapshot_room(self, user_id, room_id, pagin_config=None,
|
||||
def room_initial_sync(self, user_id, room_id, pagin_config=None,
|
||||
feedback=False):
|
||||
yield self.auth.check_joined_room(room_id, user_id)
|
||||
|
||||
|
@ -362,7 +362,7 @@ class RoomInitialSyncRestServlet(RestServlet):
|
||||
@defer.inlineCallbacks
|
||||
def on_GET(self, request, room_id):
|
||||
user = yield self.auth.get_user_by_req(request)
|
||||
events = yield self.handlers.message_handler.snapshot_room(
|
||||
events = yield self.handlers.message_handler.room_initial_sync(
|
||||
room_id=room_id,
|
||||
user_id=user.to_string(),
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user