Skip to content

Commit

Permalink
주석 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
EUNCHAEv1006 committed Feb 6, 2024
1 parent 075a5da commit 5305fc8
Showing 1 changed file with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,19 +86,6 @@ public ResponseEntity<CommonResponse<UserInfoResponseDTO>> login(
return ResponseEntity.ok().body(CommonResponse.of("로그인 성공", userInfo));
}


//
// // 로그아웃 메서드
// @PostMapping("/logout")
// public ResponseEntity<CommonResponse<Void>> logout(HttpServletRequest request) {
// String refreshToken = request.getHeader("Authorization");
// System.out.println("Refresh token: " + refreshToken);
// authService.logout(refreshToken);
// return ResponseEntity.ok().body(CommonResponse.of("로그아웃 성공", null));
// }



@GetMapping("/{userId}")
public ResponseEntity<CommonResponse<UserInfoResponseDTO>> getProfile(@PathVariable Long userId) {

Expand Down

0 comments on commit 5305fc8

Please sign in to comment.