Fix - Recover route
This route became faulty due to recent code changes, let's now fix it.
With the new features we implemented in this module, the route to recover a user stopped working. This is because we are now checking who is trying to perform this operation in order to allow them or not. Well, if the account has been deleted, how can the user identify himself? Let's then fix this route.
Now, in order to recover an account, an email
and password
shall be sent. We can then use the LoginDto
. In the UsersController
, let's alter the recover()
route by:
Making it use only this DTO
Making it public
Altering its path
Relocating it above the
update()
route
And this would be the final form of the recover()
method in the service. Note that it became very similar to the validateLocal()
method.
Commit - Fixing recover route
Last updated