Add MSC4354 experimental feature flag

This commit is contained in:
Olivier 'reivilibre
2025-12-22 14:10:22 +00:00
parent 438aa7c876
commit aaa229f55e
2 changed files with 5 additions and 0 deletions

View File

@@ -139,6 +139,8 @@ experimental_features:
msc4155_enabled: true
# Thread Subscriptions
msc4306_enabled: true
# Sticky Events
msc4354_enabled: true
server_notices:
system_mxid_localpart: _server

View File

@@ -597,5 +597,8 @@ class ExperimentalConfig(Config):
# (and MSC4308: Thread Subscriptions extension to Sliding Sync)
self.msc4306_enabled: bool = experimental.get("msc4306_enabled", False)
# MSC4354: Sticky Events
self.msc4354_enabled: bool = experimental.get("msc4354_enabled", False)
# MSC4380: Invite blocking
self.msc4380_enabled: bool = experimental.get("msc4380_enabled", False)