Skip to content

Commit

Permalink
fix: return 204 resetPassword (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsteenke authored Apr 19, 2024
1 parent f1ff3a9 commit 0eca402
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class AdminUserRestController implements AdminUserControllerApi {
@Override
public Response resetPassword(UserResetPasswordRequestDTOV1 userResetPasswordRequestDTOV1) {
adminService.resetPassword(userResetPasswordRequestDTOV1.getPassword());
return null;
return Response.noContent().build();
}

@ServerExceptionMapper
Expand Down

0 comments on commit 0eca402

Please sign in to comment.