Skip to content

Commit

Permalink
chore: 인터셉터 적용 경로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeuk520 committed Sep 4, 2024
1 parent fb5d2c8 commit 47035ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/ku/covigator/config/AuthConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class AuthConfig implements WebMvcConfigurer {
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(jwtAuthInterceptor)
.addPathPatterns("/members/travel-styles")
.addPathPatterns("/community/courses");
.addPathPatterns("/community/courses/**");
}

@Override
Expand Down

0 comments on commit 47035ad

Please sign in to comment.