diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-06-24 17:24:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-24 17:24:35 +0100 |
commit | af8a9629057942d4dfa919df90d76d1fdc549606 (patch) | |
tree | f404909096abfe3635a02568f5ff02d79e7126f6 /synapse/config/registration.py | |
parent | Merge pull request #5499 from matrix-org/rav/cleanup_metrics (diff) | |
parent | changelog (diff) | |
download | synapse-af8a9629057942d4dfa919df90d76d1fdc549606.tar.xz |
Merge pull request #5523 from matrix-org/rav/arg_defaults
Stop conflating generated config and default config
Diffstat (limited to 'synapse/config/registration.py')
-rw-r--r-- | synapse/config/registration.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/registration.py b/synapse/config/registration.py index 6d8a2df29b..4a59e6ec90 100644 --- a/synapse/config/registration.py +++ b/synapse/config/registration.py @@ -85,7 +85,7 @@ class RegistrationConfig(Config): "disable_msisdn_registration", False ) - def default_config(self, generate_secrets=False, **kwargs): + def generate_config_section(self, generate_secrets=False, **kwargs): if generate_secrets: registration_shared_secret = 'registration_shared_secret: "%s"' % ( random_string_with_symbols(50), |