Skip to content

Commit

Permalink
test: 테스트 코드
Browse files Browse the repository at this point in the history
  • Loading branch information
eckrin committed Jul 30, 2024
1 parent b821958 commit c20b521
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,10 @@ public CommonResponse<String> testAuthentication(@Auth AuthInfo authInfo) {
public CommonResponse<TestSignUpResponseDto> testSignUp(@Valid @RequestBody TestSignUpRequestDto dto) {
return new CommonResponse<>(testService.testSignUp(dto));
}

@PostMapping("/signUp2")
@Operation(summary = "(테스트) Authorization 토큰 테스트용 회원가입 Mock Api")
public CommonResponse<TestSignUpResponseDto> testSignUp2(@Valid @RequestBody TestSignUpRequestDto dto) {
return new CommonResponse<>(testService.testSignUp(dto));
}
}

0 comments on commit c20b521

Please sign in to comment.