-
-
Notifications
You must be signed in to change notification settings - Fork 15
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
Create endpoints to allow users to update their profile information and passwords. #36
Comments
Hello @jean-michelet if it is available, can you assign it to me ? Thx |
Go ahead! |
For the password update scenario, prior authentication is logically required. Currently, passwords in the database are stored in plain text via seeding. For authentication, we apply a hashing function to the plain text password, which means it is impossible to correctly compare the password entered by the user.
Before the implementation of the update endpoint, I propose, in the same pull request, to modify the seeding to store passwords in a hashed format rather than in plain text to resolve this issue. We can also include demonstration passwords in the documentation. Did I miss anything? |
No, we use a Line 51 in 9455f5c
|
Yeah my bad, I didn't see that |
No description provided.
The text was updated successfully, but these errors were encountered: