Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Add an unstable feature flag for MSC3391 to the /versions endpoint #15562

Merged
merged 2 commits into from
May 11, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add an unstable feature flag for MSC3391 to the /versions endpoint
  • Loading branch information
anoadragon453 committed May 10, 2023
commit 1013292701045c3d74c6cc0f091e7e4f760c072a
2 changes: 2 additions & 0 deletions synapse/rest/client/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@ def on_GET(self, request: Request) -> Tuple[int, JsonDict]:
"org.matrix.msc3912": self.config.experimental.msc3912_enabled,
# Adds support for unstable "intentional mentions" behaviour.
"org.matrix.msc3952_intentional_mentions": self.config.experimental.msc3952_intentional_mentions,
# Adds support for deleting account data.
"org.matrix.msc3391": self.config.experimental.msc3391_enabled,
},
},
)
Expand Down