diff options
| author | Shpuld Shpludson <shp@cock.li> | 2020-09-02 14:18:35 +0000 |
|---|---|---|
| committer | Shpuld Shpludson <shp@cock.li> | 2020-09-02 14:18:35 +0000 |
| commit | 02ea1739473bace638aeb215ab84843e9e304dfb (patch) | |
| tree | 7eb3d7c8ee6e48ebe172592c25e4637193ece2fe /src/components/password_reset/password_reset.js | |
| parent | acc45b49a55a5c173abdeac8c89d16395f92bc01 (diff) | |
| parent | 5809f33c860663165d1211d0251f0da4c2a374cd (diff) | |
Merge branch 'fix/password-reset-behavior' into 'develop'
Password reset no longer informs user of errors or account existence
See merge request pleroma/pleroma-fe!1221
Diffstat (limited to 'src/components/password_reset/password_reset.js')
| -rw-r--r-- | src/components/password_reset/password_reset.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/components/password_reset/password_reset.js b/src/components/password_reset/password_reset.js index 62e74e30..5d21d720 100644 --- a/src/components/password_reset/password_reset.js +++ b/src/components/password_reset/password_reset.js @@ -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') |
