diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-05-26 09:04:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-26 09:04:34 -0400 |
commit | 49f06866e4db2e19467a3733b2909ba397da265e (patch) | |
tree | 549f907d582a0bda1cd5f1c6139a1db4561e013b /synapse/config/homeserver.py | |
parent | Bump pyjwt from 2.3.0 to 2.4.0 (#12865) (diff) | |
download | synapse-49f06866e4db2e19467a3733b2909ba397da265e.tar.xz |
Remove backing code for groups/communities (#12558)
Including handlers, configuration code, appservice support, and the GroupID construct.
Diffstat (limited to 'synapse/config/homeserver.py')
-rw-r--r-- | synapse/config/homeserver.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/config/homeserver.py b/synapse/config/homeserver.py index a4ec706908..4d2b298a70 100644 --- a/synapse/config/homeserver.py +++ b/synapse/config/homeserver.py @@ -25,7 +25,6 @@ from .database import DatabaseConfig from .emailconfig import EmailConfig from .experimental import ExperimentalConfig from .federation import FederationConfig -from .groups import GroupsConfig from .jwt import JWTConfig from .key import KeyConfig from .logger import LoggingConfig @@ -89,7 +88,6 @@ class HomeServerConfig(RootConfig): PushConfig, SpamCheckerConfig, RoomConfig, - GroupsConfig, UserDirectoryConfig, ConsentConfig, StatsConfig, |