mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-07-31 11:48:34 -04:00
Fix password config
This commit is contained in:
parent
1ee2584307
commit
14362bf359
2 changed files with 3 additions and 3 deletions
|
@ -23,7 +23,7 @@ class PasswordConfig(Config):
|
|||
def read_config(self, config):
|
||||
password_config = config.get("password_config", {})
|
||||
self.password_enabled = password_config.get("enabled", True)
|
||||
self.pepper = password_config.get("pepper", "")
|
||||
self.password_pepper = password_config.get("pepper", "")
|
||||
|
||||
def default_config(self, config_dir_path, server_name, **kwargs):
|
||||
return """
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue