-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
[4.4][Security] Password migration with guards #12853
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
[4.4][Security] Password migration with guards #12853
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the PR!
aab3785
to
ea43e0d
Compare
Thanks for the quick review, comments are fixed :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With minor comment
namespace App\Security; | ||
|
||
use Symfony\Component\Security\Guard\PasswordAuthenticatedInterface; | ||
// ... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing the use of AbstractGuardAuthenticator no?
Thank you Wouter. |
This PR was merged into the 4.4 branch. Discussion ---------- [4.4][Security] Password migration with guards Fixes #12756 When using password migration with guard, you also need to implement an interface in your guard class. Thanks @chalasr for reporting this missing bit. Commits ------- ea43e0d Document PasswordAuthenticatedInterface
Fixes #12756
When using password migration with guard, you also need to implement an interface in your guard class.
Thanks @chalasr for reporting this missing bit.