Disable groups/communities by default. (#12344)

This disables the endpoints (and sync response fields) for
groups/communities by default.
This commit is contained in:
Patrick Cloke 2022-04-12 10:20:46 -04:00 committed by GitHub
parent 320186319a
commit 9535fd0f9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 1 deletions

View file

@ -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)