Rename fields to _ids

This commit is contained in:
Erik Johnston 2016-08-03 17:19:15 +01:00
parent bcc9cda8ca
commit edb33eb163
2 changed files with 4 additions and 4 deletions

View file

@ -322,8 +322,8 @@ class FederationClient(FederationBase):
destination, room_id, event_id=event_id, destination, room_id, event_id=event_id,
) )
state_event_ids = result["pdus"] state_event_ids = result["pdu_ids"]
auth_event_ids = result.get("auth_chain", []) auth_event_ids = result.get("auth_chain_ids", [])
fetched_events, failed_to_fetch = yield self.get_events( fetched_events, failed_to_fetch = yield self.get_events(
[destination], room_id, set(state_event_ids + auth_event_ids) [destination], room_id, set(state_event_ids + auth_event_ids)

View file

@ -231,8 +231,8 @@ class FederationServer(FederationBase):
) )
defer.returnValue((200, { defer.returnValue((200, {
"pdus": [pdu.event_id for pdu in pdus], "pdu_ids": [pdu.event_id for pdu in pdus],
"auth_chain": [pdu.event_id for pdu in auth_chain], "auth_chain_ids": [pdu.event_id for pdu in auth_chain],
})) }))
@defer.inlineCallbacks @defer.inlineCallbacks