-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Implement UserDetailsPasswordService in JdbcUserDetailsManager #16863 #16881
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
Conversation
Issue Number: 16863 - Added UserDetailsPasswordService implementation to JdbcUserDetailsManager class. - Implemented updatePassword method to support password updates. Signed-off-by: Vasanth <[email protected]>
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.
Thanks for the PR!
I've provided feedback inline. A few more items:
- Please fix the tests. You can run them using
./gradlew check
- Please add more tests for this additional logic
@@ -64,7 +65,8 @@ | |||
* @author Luke Taylor | |||
* @since 2.0 | |||
*/ | |||
public class JdbcUserDetailsManager extends JdbcDaoImpl implements UserDetailsManager, GroupManager { | |||
public class JdbcUserDetailsManager extends JdbcDaoImpl | |||
implements UserDetailsManager, GroupManager, UserDetailsPasswordService { | |||
|
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.
Please add a boolean property enableUpdatePassword which is false by default. The updatePassword method logic should only be ran if the property is true.
Hi @vasanth-79, I noticed that the feedback provided by @rwinch on this PR about a month ago hasn't been addressed yet. Are you still planning to work on implementing these changes? If you're unable to continue for any reason, I'd be happy to pick this up and help finish it by incorporating the requested feedback. @rwinch, could you please advise on the best way to proceed if @vasanth-79 is no longer available? Thanks! |
Closing as declined due to lack of response to feedback @jhl221123 If you can comment on the original issue, I can assign it to you |
Issue Number: #16863