1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-05-21 01:33:46 +02:00

Document copy_redacts

This commit is contained in:
Valentin Lorentz 2024-04-17 19:37:32 +02:00
parent 7a7c09785e
commit eb6801290b

View file

@ -97,6 +97,14 @@ impl PduEvent {
Ok(())
}
/// Copies the `redacts` property of the event to the `content` dict
///
/// This follows the specification's
/// [recommendation](https://spec.matrix.org/v1.10/rooms/v11/#moving-the-redacts-property-of-mroomredaction-events-to-a-content-property):
///
/// > For backwards-compatibility with older clients, servers should add a redacts
/// > property to the top level of m.room.redaction events in when serving such events
/// > over the Client-Server API.
pub fn copy_redacts(&self) -> (Option<Arc<EventId>>, Box<RawJsonValue>) {
if self.kind == TimelineEventType::RoomRedaction {
if let Ok(mut content) =