diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-04-24 10:22:22 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-04-24 10:22:22 +0100 |
commit | c8c710eca73093d56e9c298065faf938d0a9ca5b (patch) | |
tree | 1bcf64d4840a64d62d7c683aa1d3d67c3034a1de /synapse/config/homeserver.py | |
parent | Better help for the old-signing-key option (diff) | |
download | synapse-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.py | 3 |
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 |