diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2023-02-25 20:27:55 +1100 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2023-02-25 20:31:10 +1100 |
commit | deb0da524e9eacf4e90bbc6f1d3101d7f35c4e61 (patch) | |
tree | 72c499e2ca70b1f707f869c7ccf772d5ea3de6d2 /src/util/config/Config.ts | |
parent | Merge branch 'master' of github.com:fosscord/fosscord-server (diff) | |
download | server-deb0da524e9eacf4e90bbc6f1d3101d7f35c4e61.tar.xz |
Rename password_reset config to passwordReset as it messes with config key generation
Diffstat (limited to '')
-rw-r--r-- | src/util/config/Config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/config/Config.ts b/src/util/config/Config.ts index c056d454..de939e6b 100644 --- a/src/util/config/Config.ts +++ b/src/util/config/Config.ts @@ -61,6 +61,6 @@ export class ConfigValue { defaults: DefaultsConfiguration = new DefaultsConfiguration(); external: ExternalTokensConfiguration = new ExternalTokensConfiguration(); email: EmailConfiguration = new EmailConfiguration(); - password_reset: PasswordResetConfiguration = + passwordReset: PasswordResetConfiguration = new PasswordResetConfiguration(); } |