mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-05 14:44:55 -04:00
Move MSC2654 support behind an experimental configuration flag. (#12295)
To match the current thinking on disabling experimental features by default.
This commit is contained in:
parent
6927d87254
commit
bebf994ee8
4 changed files with 12 additions and 1 deletions
|
@ -78,3 +78,6 @@ class ExperimentalConfig(Config):
|
|||
|
||||
# The deprecated groups feature.
|
||||
self.groups_enabled: bool = experimental.get("groups_enabled", True)
|
||||
|
||||
# MSC2654: Unread counts
|
||||
self.msc2654_enabled: bool = experimental.get("msc2654_enabled", False)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue