We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65e05fd commit f4105d5Copy full SHA for f4105d5
src/main/java/com/oronaminc/join/member/api/MemberController.java
@@ -46,7 +46,7 @@ public class MemberController {
46
@GetMapping("/exists")
47
@ResponseStatus(HttpStatus.OK)
48
public ExistsMemberResponse existsMemberByEmail(
49
- @Valid ExistsMemberRequest existsMemberRequest) {
+ @Valid @RequestBody ExistsMemberRequest existsMemberRequest) {
50
boolean exists = memberService.existsMemberByEmail(existsMemberRequest.email());
51
return new ExistsMemberResponse(exists);
52
}
0 commit comments