1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/api/room_versions.py b/synapse/api/room_versions.py
index a747a40814..9e6f26ff0a 100644
--- a/synapse/api/room_versions.py
+++ b/synapse/api/room_versions.py
@@ -81,6 +81,9 @@ class RoomVersion:
msc2716_historical: bool
# MSC2716: Adds support for redacting "insertion", "chunk", and "marker" events
msc2716_redactions: bool
+ # MSC2174: Move the "redacts" key from the top-level of the event to the content
+ # MSC2244: Adds support for a "redacts" array of event IDs in an event's content
+ msc2174_msc2244_redactions: bool
class RoomVersions:
|