Password reset no longer informs user of errors or account existence

This commit is contained in:
Mark Felder 2020-09-01 16:48:51 -05:00
parent acc45b49a5
commit 5809f33c86
15 changed files with 0 additions and 19 deletions

View file

@ -47,11 +47,6 @@ const passwordReset = {
if (status === 204) {
this.success = true
this.error = null
} else if (status === 404 || status === 400) {
this.error = this.$t('password_reset.not_found')
this.$nextTick(() => {
this.$refs.email.focus()
})
} else if (status === 429) {
this.throttled = true
this.error = this.$t('password_reset.too_many_requests')