Skip to content

Commit

Permalink
Merge pull request #23 from goormthon-Univ/dev
Browse files Browse the repository at this point in the history
[Fix] 회원가입 에러 해결
  • Loading branch information
namkikim0718 authored Mar 23, 2024
2 parents 24a965d + 1d94e45 commit 042e6dd
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

import java.io.IOException;
import java.util.Map;
import java.util.Optional;

@RestController
@RequiredArgsConstructor
Expand All @@ -29,7 +28,7 @@ public class MemberController {
private final JWTUtil jwtUtil;

@PostMapping("/signup")
public Long signUp(SignUpDTO signUpDTO) {
public Long signUp(@RequestBody SignUpDTO signUpDTO) {
return memberService.createMember(signUpDTO);
}

Expand Down

0 comments on commit 042e6dd

Please sign in to comment.