Skip to content

Commit

Permalink
merge용
Browse files Browse the repository at this point in the history
  • Loading branch information
ori0o0p committed Aug 20, 2024
2 parents e021a12 + 260d33b commit 063a20f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ private TokenResponse studentLogin(@RequestBody LoginRequest request) {
}

@PostMapping("/teacher")
TokenResponse teacherLogin(@RequestBody LoginRequest request) {
private TokenResponse teacherLogin(@RequestBody LoginRequest request) {
return teacherLoginUseCase.teacherLogin(request);
}

@PutMapping("/token")
TokenResponse reissueToken(@RequestHeader(name = "x-refresh-token") String token) {
private TokenResponse reissueToken(@RequestHeader(name = "x-refresh-token") String token) {
return reissueTokenUseCase.reissueToken(token);
}
}

0 comments on commit 063a20f

Please sign in to comment.