Add reset password endpoint and DTO
Introduces a new /reset-password endpoint in AuthenticationController, a ResetPasswordDTO for request payload, and a resetPassword method in UserService to handle password resets. Also updates SecurityURI with the new endpoint constant.dev-pending-01-01-2026
parent
44707f34c2
commit
1639058e20
@ -0,0 +1,10 @@
|
|||||||
|
package com.mfsys.aconnect.security.dto;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class ResetPasswordDTO {
|
||||||
|
private String userId;
|
||||||
|
private String porOrgacode;
|
||||||
|
private String newPassword;
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue