Skip to content

Commit

Permalink
feat/#531 : spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
hwangdaesun committed Oct 9, 2024
1 parent 12fbab1 commit e896ef3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ public void redirect(@RequestParam String email, HttpServletResponse response) {
description = "비밀번호를 찾을 때 사용한다. 단, 비밀번호 찾기 버튼을 누르는 것이지 실제로는 새로운 비밀번호로 수정한다.")
@PatchMapping("/members/find-password")
@ApiErrorExceptionsExample(FindPassword_updatePasswordExceptionDocs.class)
public ApiResponse<CustomBody<Void>> findPassword(@RequestBody @Valid FindPasswordRequest request) {
public ApiResponse<CustomBody<Void>> findPassword(
@RequestBody @Valid FindPasswordRequest request) {
checkCodeUsecase.execute(request.email(), request.code());
updatePasswordUsecase.execute(request.email(), request.newPassword());
return ApiResponseGenerator.success(HttpStatus.OK);
Expand Down

0 comments on commit e896ef3

Please sign in to comment.