Created a new endpoint to update user

This commit is contained in:
rajesh
2025-02-06 20:33:40 +05:30
parent eeb01ab8fa
commit da677ca039
6 changed files with 116 additions and 2 deletions

View File

@@ -47,4 +47,6 @@ public interface UserService {
public UserEntity getUserEntityById(Long userId);
List<UserResponseBean> getAllUsers(HttpServletRequest request, List<Long> roleIds);
UserResponseBean updateUserDetails(HttpServletRequest request, Long userId, UpdateUserReqForBeneficiary userReq);
}