Deprecate the groups/communities endpoints and add an experimental configuration flag. (#12200)

This commit is contained in:
Patrick Cloke 2022-03-12 13:23:37 -05:00 committed by GitHub
parent ef3619e61d
commit 54f674f7a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 35 additions and 7 deletions

View file

@ -74,3 +74,6 @@ class ExperimentalConfig(Config):
# MSC3720 (Account status endpoint)
self.msc3720_enabled: bool = experimental.get("msc3720_enabled", False)
# The deprecated groups feature.
self.groups_enabled: bool = experimental.get("groups_enabled", True)