summary refs log tree commit diff
path: root/synapse/config/homeserver.py
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2019-06-14 19:38:44 +0100
committerBrendan Abolivier <babolivier@matrix.org>2019-06-14 19:38:44 +0100
commit5c4296b47a9f4c77da99a03c420e12ec33ccd3b0 (patch)
treea93bce0e96ecaef07ba9f4f42b084d75d6442319 /synapse/config/homeserver.py
parentMerge pull request #5466 from matrix-org/babolivier/fix_deactivation_bg_job (diff)
parentAdd plugin APIs for implementations of custom event rules. (diff)
downloadsynapse-5c4296b47a9f4c77da99a03c420e12ec33ccd3b0.tar.xz
Merge branch 'babolivier/third_party_event_rules' into dinsic
Diffstat (limited to 'synapse/config/homeserver.py')
-rw-r--r--synapse/config/homeserver.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/config/homeserver.py b/synapse/config/homeserver.py

index 5c4fc8ff21..acadef4fd3 100644 --- a/synapse/config/homeserver.py +++ b/synapse/config/homeserver.py
@@ -38,6 +38,7 @@ from .server import ServerConfig from .server_notices_config import ServerNoticesConfig from .spam_checker import SpamCheckerConfig from .stats import StatsConfig +from .third_party_event_rules import ThirdPartyRulesConfig from .tls import TlsConfig from .user_directory import UserDirectoryConfig from .voip import VoipConfig @@ -73,5 +74,6 @@ class HomeServerConfig( StatsConfig, ServerNoticesConfig, RoomDirectoryConfig, + ThirdPartyRulesConfig, ): pass