mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-08 17:32:13 -04:00
Disable groups/communities by default. (#12344)
This disables the endpoints (and sync response fields) for groups/communities by default.
This commit is contained in:
parent
320186319a
commit
9535fd0f9c
4 changed files with 10 additions and 1 deletions
|
@ -74,7 +74,7 @@ class ExperimentalConfig(Config):
|
|||
self.msc3720_enabled: bool = experimental.get("msc3720_enabled", False)
|
||||
|
||||
# The deprecated groups feature.
|
||||
self.groups_enabled: bool = experimental.get("groups_enabled", True)
|
||||
self.groups_enabled: bool = experimental.get("groups_enabled", False)
|
||||
|
||||
# MSC2654: Unread counts
|
||||
self.msc2654_enabled: bool = experimental.get("msc2654_enabled", False)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue