Merge branch 'be/email' into 'backend'

refactor: email API 경로명 수정

See merge request s11-webmobile1-sub2/S11P12A701!85
This commit is contained in:
김기창 2024-08-07 13:43:26 +09:00
commit 0a7e65420b

View File

@ -18,7 +18,7 @@ public class MailController {
private final UserService userService;
@PostMapping("/sendCode")
@PostMapping("/sendcode")
public ResponseEntity<?> sendMail(@RequestParam String email) {
if (!userService.isEmailExist(email)) {
return new ResponseEntity<>(HttpStatus.NOT_FOUND);