summary refs log tree commit diff
path: root/synapse/config/homeserver.py
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-04-24 10:22:22 +0100
committerMark Haines <mark.haines@matrix.org>2015-04-24 10:22:22 +0100
commitc8c710eca73093d56e9c298065faf938d0a9ca5b (patch)
tree1bcf64d4840a64d62d7c683aa1d3d67c3034a1de /synapse/config/homeserver.py
parentBetter help for the old-signing-key option (diff)
downloadsynapse-c8c710eca73093d56e9c298065faf938d0a9ca5b.tar.xz
Move the key related config parser into a separate file
Diffstat (limited to 'synapse/config/homeserver.py')
-rw-r--r--synapse/config/homeserver.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/config/homeserver.py b/synapse/config/homeserver.py
index 3edfadb98b..967a0f45d6 100644
--- a/synapse/config/homeserver.py
+++ b/synapse/config/homeserver.py
@@ -25,12 +25,13 @@ from .voip import VoipConfig
 from .registration import RegistrationConfig
 from .metrics import MetricsConfig
 from .appservice import AppServiceConfig
+from .key import KeyConfig
 
 
 class HomeServerConfig(TlsConfig, ServerConfig, DatabaseConfig, LoggingConfig,
                        RatelimitConfig, ContentRepositoryConfig, CaptchaConfig,
                        EmailConfig, VoipConfig, RegistrationConfig,
-                       MetricsConfig, AppServiceConfig,):
+                       MetricsConfig, AppServiceConfig, KeyConfig,):
     pass