store emails even if password resets are disabled

there are other reasons to store email addresses now, so this is no
longer a just requirement.
pull/20/head
Harvey Tindall 4 years ago
parent 493f10fa36
commit 47abf20e1d
No known key found for this signature in database
GPG Key ID: BBC65952848FB1A2

@ -378,7 +378,8 @@ func (app *appContext) NewUser(gc *gin.Context) {
}
}
}
if app.config.Section("password_resets").Key("enabled").MustBool(false) {
// if app.config.Section("password_resets").Key("enabled").MustBool(false) {
if req.Email != "" {
app.storage.emails[id] = req.Email
app.storage.storeEmails()
}

Loading…
Cancel
Save