mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-01 17:36:06 -04:00
Include the original event in /relations (#5626)
When asking for the relations of an event, include the original event in the response. This will mostly be used for efficiently showing edit history, but could be useful in other circumstances.
This commit is contained in:
parent
af67c7c1de
commit
d88421ab03
4 changed files with 12 additions and 4 deletions
|
@ -145,9 +145,9 @@ class RelationPaginationServlet(RestServlet):
|
|||
room_id, requester.user.to_string()
|
||||
)
|
||||
|
||||
# This checks that a) the event exists and b) the user is allowed to
|
||||
# view it.
|
||||
yield self.event_handler.get_event(requester.user, room_id, parent_id)
|
||||
# This gets the original event and checks that a) the event exists and
|
||||
# b) the user is allowed to view it.
|
||||
event = yield self.event_handler.get_event(requester.user, room_id, parent_id)
|
||||
|
||||
limit = parse_integer(request, "limit", default=5)
|
||||
from_token = parse_string(request, "from")
|
||||
|
@ -173,10 +173,12 @@ class RelationPaginationServlet(RestServlet):
|
|||
)
|
||||
|
||||
now = self.clock.time_msec()
|
||||
original_event = yield self._event_serializer.serialize_event(event, now)
|
||||
events = yield self._event_serializer.serialize_events(events, now)
|
||||
|
||||
return_value = result.to_dict()
|
||||
return_value["chunk"] = events
|
||||
return_value["original_event"] = original_event
|
||||
|
||||
defer.returnValue((200, return_value))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue