feat: 이메일 인증 실패시 반환값 변경
This commit is contained in:
parent
a02884e2dd
commit
78cfed17e7
@ -31,7 +31,7 @@ public class MailController {
|
|||||||
@GetMapping("/verify")
|
@GetMapping("/verify")
|
||||||
public ResponseEntity<?> verifyCode(@RequestParam String code, @RequestParam String email) {
|
public ResponseEntity<?> verifyCode(@RequestParam String code, @RequestParam String email) {
|
||||||
if (!mailService.verifyCode(code, email)) {
|
if (!mailService.verifyCode(code, email)) {
|
||||||
return new ResponseEntity<>(HttpStatus.BAD_REQUEST);
|
return new ResponseEntity<>(HttpStatus.NOT_FOUND);
|
||||||
}
|
}
|
||||||
return new ResponseEntity<>(HttpStatus.OK);
|
return new ResponseEntity<>(HttpStatus.OK);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user