new api update password from reset password

This commit is contained in:
2024-11-27 18:25:49 +07:00
parent d700568cc9
commit fd226a43ac

View File

@ -8,7 +8,7 @@ export class RoutePublic {
app.post('/api/login', AuthController.login)
app.put('/api/reset_password/:email', AuthController.resetPassword)
app.put('/api/update_password/:token', UserController.updatePassword)
app.put('/api/update_password/:token', AuthController.updatePassword)
app.put('/api/logout/:refresh_token', AuthController.logout)
app.put('/api/renew_token/:refresh_token', AuthController.renewToken)