diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2019-10-10 09:39:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-10 09:39:35 +0100 |
commit | f743108a94658eb1dbaf168d39874272f756a386 (patch) | |
tree | b9f745e72ae01b13adc9b273884fd31c8fe4f355 /synapse/config/consent_config.py | |
parent | Merge pull request #6185 from matrix-org/erikj/fix_censored_evnets (diff) | |
download | synapse-f743108a94658eb1dbaf168d39874272f756a386.tar.xz |
Refactor HomeserverConfig so it can be typechecked (#6137)
Diffstat (limited to 'synapse/config/consent_config.py')
-rw-r--r-- | synapse/config/consent_config.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/config/consent_config.py b/synapse/config/consent_config.py index 48976e17b1..62c4c44d60 100644 --- a/synapse/config/consent_config.py +++ b/synapse/config/consent_config.py @@ -73,6 +73,9 @@ DEFAULT_CONFIG = """\ class ConsentConfig(Config): + + section = "consent" + def __init__(self, *args): super(ConsentConfig, self).__init__(*args) |