Skip to content

Commit

Permalink
fix: 인증 인터셉터에서 로그인와 토큰 재발급 제외
Browse files Browse the repository at this point in the history
  • Loading branch information
JJ503 committed Feb 11, 2024
1 parent f148bbf commit ceb0b28
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ public class AuthenticationWebMvcConfiguration implements WebMvcConfigurer {
public void addInterceptors(final InterceptorRegistry registry) {
registry.addInterceptor(authenticationInterceptor)
.addPathPatterns("/**")
.excludePathPatterns("/admin/**");
.excludePathPatterns("/admin/**")
.excludePathPatterns("/auth/login/oauth/**", "/auth/reissue");
}

@Override
Expand Down

0 comments on commit ceb0b28

Please sign in to comment.