Skip to content

Commit

Permalink
refactor: 이메일 찾기 API 메서드 이름 수정(#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
Minjae-An committed Mar 27, 2024
1 parent 5200650 commit 72e5115
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public ResponseEntity<CustomResponse<Void>> verifyPhoneNumber(
@Operation(summary = "이메일 찾기", description = "인증 코드를 바탕으로 아이디를 찾을 수 있습니다.")
@ApiResponse(responseCode = "200", description = "아이디 찾기 정상 처리")
@PostMapping("/users/help/email-inquiry")
public ResponseEntity<CustomResponse<UserEmailInquiryResponse>> idInquiry(
public ResponseEntity<CustomResponse<UserEmailInquiryResponse>> emailInquiry(
@Valid @RequestBody UserEmailInquiryRequest request) {

UserEmailInquiryResponse response = loginService.findEmail(request);
Expand Down

0 comments on commit 72e5115

Please sign in to comment.