Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GIS-628: Display Too Many Password Reset Emails Sent #548

Merged
merged 4 commits into from Jun 15, 2020
Merged
Changes from 1 commit
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

Next

Display too many password reset emails sent

  • Loading branch information
Alberto Franco
Alberto Franco committed May 11, 2020
commit 9733c4d39df82592fb6914a21b6976edc1f28cf4
@@ -2409,5 +2409,8 @@
},
"no_thanks_continue_with_basic": {
"message": "No thanks, continue with basic"
},
"too_many_password_resets_text": {
"message": "Too many password reset requests. Try again in one hour."
}
}
@@ -104,6 +104,9 @@ export default (state = initialState, action) => {
case '10110':
errorText = t('banner_email_not_in_system_message');
break;
case 'too_many_password_resets':
errorText = t('too_many_password_resets_text');
break;
default:
errorText = t('server_error_message');
}
@@ -182,6 +182,9 @@ export default (state = initialState, action) => {
case '10110':
errorText = t('banner_email_not_in_system_message');
break;
case 'too_many_password_resets':
errorText = t('too_many_password_resets_text');
break;
default:
errorText = t('server_error_message');
}
ProTip! Use n and p to navigate between commits in a pull request.