We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Symfony FOSUserBundle versions:
2.0.*
Description of the problem including expected versus actual behavior:
I need catch event when user want reset password with bad email or before 2 hours than the first trying
Steps to reproduce:
Provide logs (if relevant):
Describe the feature:
vendor/friendsofsymfony/user-bundle/Controller/ResettingController.php
if (null !== $user && !$user->isPasswordRequestNonExpired($ttl)) { .... }
We can have else like $dispatcher->dispatch(FOSUserEvents::RESETTING_FORM_ERROR, $event);
$dispatcher->dispatch(FOSUserEvents::RESETTING_FORM_ERROR, $event);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Symfony FOSUserBundle versions:
2.0.*
Description of the problem including expected versus actual behavior:
I need catch event when user want reset password with bad email or before 2 hours than the first trying
Steps to reproduce:
Provide logs (if relevant):
Describe the feature:
vendor/friendsofsymfony/user-bundle/Controller/ResettingController.php
We can have else like
$dispatcher->dispatch(FOSUserEvents::RESETTING_FORM_ERROR, $event);
The text was updated successfully, but these errors were encountered: