Skip to content

Commit

Permalink
hotfix: 메인 페이지 조회 시 토큰 받지 않도록 수정 (#524)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyma-s authored Oct 19, 2023
1 parent 749ec05 commit 3bd7934
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ public void addInterceptors(final InterceptorRegistry registry) {

private HandlerInterceptor loginCheckerInterceptor() {
return new PathMatcherInterceptor(loginCheckerInterceptor)
.includePathPattern("/songs/high-liked/**", PathMethod.GET)
.includePathPattern("/songs/high-liked/*", PathMethod.GET)
.includePathPattern("/songs/high-liked/*/prev", PathMethod.GET)
.includePathPattern("/songs/high-liked/*/next", PathMethod.GET)
.includePathPattern("/songs/*", PathMethod.GET);
}

Expand Down

0 comments on commit 3bd7934

Please sign in to comment.