You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Users can request a password reset if they have forgotten their password, but they should also be able to change their password.
Describe the solution you'd like
A page where they can enter a new password, where they should enter:
their current password
their new password
their new password again
Additional context
The backend provides a PATCH /users/me endpoint to modify the current user:
Is your feature request related to a problem? Please describe.
Users can request a password reset if they have forgotten their password, but they should also be able to change their password.
Describe the solution you'd like
A page where they can enter a new password, where they should enter:
Additional context
The backend provides a PATCH
/users/me
endpoint to modify the current user:https://mondey.lkeegan.dev/api/docs#/users/users_patch_current_user_users_me_patch
The frontend has auto-generated client code to interact with the backend, here is the corresponding function:
mondey/frontend/src/lib/client/services.gen.ts
Lines 436 to 441 in ffcb6ae
where
UsersPatchCurrentUserData
is a type definition generated from the API:mondey/frontend/src/lib/client/types.gen.ts
Lines 627 to 629 in ffcb6ae
mondey/frontend/src/lib/client/types.gen.ts
Lines 294 to 303 in ffcb6ae
The text was updated successfully, but these errors were encountered: