Skip to content

Commit

Permalink
Merge pull request #67 from Beyond-B/feat/66-signUp-fix
Browse files Browse the repository at this point in the history
♻️ [Fix]: 회원가입 API, 응답 수정
  • Loading branch information
wjdalswl authored Feb 17, 2024
2 parents 407a56c + 7754d54 commit 6c2023a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ public class UserController {
private final UserService userService;

@PostMapping("/sign-up")
public String signUp(@RequestBody UserSignupDTO userSignUpDto) throws Exception {
public BaseResponse<String> signUp(@RequestBody UserSignupDTO userSignUpDto) throws Exception {
userService.signUp(userSignUpDto);
return "회원가입 성공";
return BaseResponse.onSuccess("회원가입 성공");
}

@GetMapping("/jwt-test")
Expand Down

0 comments on commit 6c2023a

Please sign in to comment.