Skip to content

Commit

Permalink
[fix] 이메일 전송 테스트 API 스펙 변경(PATCH->POST)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeonHaeseung committed May 2, 2024
1 parent 7a665aa commit 66b9044
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public ResponseEntity<?> sendOverview(@AuthUser Member member, @RequestParam Boo
return new ResponseEntity<>(HttpStatusCode.valueOf(200));
}

@PatchMapping("/test")
@PostMapping("/test")
@Operation(summary = "이메일 기능 테스트 API", description = "사용자가 어떤 이메일이 오는지 궁금할 때 테스트할 수 있는 API 입ㄴ디ㅏ.")
public ResponseEntity<?> sendOverview(@AuthUser Member member){
emailService.sendEmailNotice(member.getEmail());
Expand Down

0 comments on commit 66b9044

Please sign in to comment.