Skip to content

Commit

Permalink
feat: 인터셉터 허용
Browse files Browse the repository at this point in the history
  • Loading branch information
hoyeonyy committed Oct 15, 2024
1 parent 666aaaf commit 6576d6e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ public class WebMvcConfig implements WebMvcConfigurer {
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(authenticationCheckInterceptor)
.addPathPatterns("/v1/**")
.excludePathPatterns("/v1/auth/kakao/oauth", "/v1/auth/login", "/health", "/v1/auth/google/oauth",
.excludePathPatterns("/v1/auth/kakao/oauth", "/v1/auth/login/anna", "/v1/auth/login/hogee", "/health",
"/v1/auth/google/oauth",
"/v1/auth/apple/oauth", "/v1/oauth/apple");
}

Expand Down

0 comments on commit 6576d6e

Please sign in to comment.