Skip to content

Commit

Permalink
‼️hotfix : 이메일 인증번호 Body -> Param 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
DDonghyeo committed Jun 26, 2024
1 parent 30fe5ca commit 7fe4fd6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public ApiResponse<JwtDto> reissueToken(@RequestHeader("RefreshToken") String re

// 이메일에 인증번호 보내기
@GetMapping("/emails/submit-authcode")
public ApiResponse<String> submitAuthCode(@RequestBody String email) {
public ApiResponse<String> submitAuthCode(@RequestParam String email) {
userService.sendAuthCodeToEmail(email);
return ApiResponse.onSuccess("인증번호 전송에 성공했습니다.");
}
Expand Down

0 comments on commit 7fe4fd6

Please sign in to comment.