Skip to content

Commit

Permalink
Update JwtVerifyFilter.java
Browse files Browse the repository at this point in the history
  • Loading branch information
ss7622 authored Jun 19, 2024
1 parent e32b547 commit a5f79cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
@Slf4j
public class JwtVerifyFilter extends OncePerRequestFilter {
// 소셜 로그인 관련 URI 추가
private static final String[] whitelist = {"/signUp", "/login", "/refresh", "/", "/index.html", "/oauth2/login", "/login/oauth2/code/*", "/oauth2/authorization/kakao", "/swagger-ui/index.html", "/swagger-ui/**", "/v3/api-docs/**", "/swagger-resources/**", "/v3/api-docs"};
private static final String[] whitelist = {"/signUp", "/login", "/refresh", "/", "/index.html", "/oauth2/login", "/login/oauth2/code/*", "/oauth2/authorization/kakao","/member/*/refresh","/swagger-ui/index.html", "/swagger-ui/**", "/v3/api-docs/**", "/swagger-resources/**", "/v3/api-docs"};

private static void checkAuthorizationHeader(String header) {
if (header == null) {
Expand Down

0 comments on commit a5f79cf

Please sign in to comment.