feat(users): add reset password functionality for users and implement forgot password page

This commit is contained in:
Tran Anh Tuan
2026-02-03 17:33:47 +07:00
parent 9bc15192ec
commit dca363275e
35 changed files with 1592 additions and 321 deletions

View File

@@ -41,4 +41,9 @@ declare namespace MasterModel {
limit?: number;
users: UserResponse[];
}
interface UserResetPasswordRequest {
token: string;
password: string;
confirm_password?: string;
}
}