summary refs log tree commit diff
path: root/synapse/config
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2022-04-12 10:20:46 -0400
committerGitHub <noreply@github.com>2022-04-12 10:20:46 -0400
commit9535fd0f9c4227be14452271e163c2ddbc3a0a19 (patch)
treebf8c1b7dccd5f0cfc828fceae816a8f351b185fb /synapse/config
parentResync state after partial-state join (#12394) (diff)
downloadsynapse-9535fd0f9c4227be14452271e163c2ddbc3a0a19.tar.xz
Disable groups/communities by default. (#12344)
This disables the endpoints (and sync response fields) for
groups/communities by default.
Diffstat (limited to 'synapse/config')
-rw-r--r--synapse/config/experimental.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/experimental.py b/synapse/config/experimental.py
index 0772dce411..979059e723 100644
--- a/synapse/config/experimental.py
+++ b/synapse/config/experimental.py
@@ -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)