Fix Forgot Password to be optional.

Thanks to xet7 !
This commit is contained in:
Lauri Ojansivu 2022-02-26 04:16:16 +02:00
parent 00efbf00d3
commit 9bd6879455

View file

@ -11,9 +11,13 @@ Settings.attachSchema(
new SimpleSchema({
disableRegistration: {
type: Boolean,
optional: true,
defaultValue: false,
},
disableForgotPassword: {
type: Boolean,
optional: true,
defaultValue: false,
},
'mailServer.username': {
type: String,