Skip to content

Commit

Permalink
Merge branch 'main' into refactor/#505
Browse files Browse the repository at this point in the history
  • Loading branch information
cruelladevil authored Oct 19, 2023
2 parents dd97a30 + 3bd7934 commit 45ceb6c
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 45ceb6c

Please sign in to comment.