Skip to content

Commit

Permalink
Merge branch 'staging' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Mingyum-Kim authored Sep 17, 2023
2 parents d01c73f + 67aa516 commit fdf1af3
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ protected void doFilterInternal(HttpServletRequest request, HttpServletResponse
try {
String accessToken = tokenProvider.getToken(request.getHeader(AUTHORIZATION_HEADER));


// 토큰의 유효성을 검증
tokenProvider.validateToken(accessToken);
blackListService.checkBlackList(accessToken);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ public class OAuthController {

private final OAuthService oauthService;

private final TokenProvider tokenProvider;

@Operation(summary = "소셜 로그인",
description = "카카오, 애플 서버에서 로그인한 사용자의 userId를 통해 access token과 refresh token을 반환합니다.")
@PostMapping("/{provider}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
public class SecurityConfig {

private final TokenProvider tokenProvider;

private final BlackListService blackListService;

private final JwtAuthenticationEntryPoint jwtAuthenticationEntryPoint;
Expand Down

0 comments on commit fdf1af3

Please sign in to comment.