diff options
author | Shay <hillerys@element.io> | 2022-03-11 10:46:45 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-11 10:46:45 -0800 |
commit | ef3619e61d84493d98470eb2a69131d15eb1166b (patch) | |
tree | 726cb8f378cb0d0352f751c98f181c6e7aa32051 /synapse/config/homeserver.py | |
parent | Implement a Jinja2 filter to extract localparts from email addresses (#12212) (diff) | |
download | synapse-ef3619e61d84493d98470eb2a69131d15eb1166b.tar.xz |
Add config settings for background update parameters (#11980)
Diffstat (limited to 'synapse/config/homeserver.py')
-rw-r--r-- | synapse/config/homeserver.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/config/homeserver.py b/synapse/config/homeserver.py index 001605c265..a4ec706908 100644 --- a/synapse/config/homeserver.py +++ b/synapse/config/homeserver.py @@ -16,6 +16,7 @@ from .account_validity import AccountValidityConfig from .api import ApiConfig from .appservice import AppServiceConfig from .auth import AuthConfig +from .background_updates import BackgroundUpdateConfig from .cache import CacheConfig from .captcha import CaptchaConfig from .cas import CasConfig @@ -99,4 +100,5 @@ class HomeServerConfig(RootConfig): WorkerConfig, RedisConfig, ExperimentalConfig, + BackgroundUpdateConfig, ] |