From 3bd79348caeede6f3cbd84b86698e2a976ae6c34 Mon Sep 17 00:00:00 2001 From: Eunsol Kim <61370551+Cyma-s@users.noreply.github.com> Date: Thu, 19 Oct 2023 13:23:02 +0900 Subject: [PATCH] =?UTF-8?q?hotfix:=20=EB=A9=94=EC=9D=B8=20=ED=8E=98?= =?UTF-8?q?=EC=9D=B4=EC=A7=80=20=EC=A1=B0=ED=9A=8C=20=EC=8B=9C=20=ED=86=A0?= =?UTF-8?q?=ED=81=B0=20=EB=B0=9B=EC=A7=80=20=EC=95=8A=EB=8F=84=EB=A1=9D=20?= =?UTF-8?q?=EC=88=98=EC=A0=95=20(#524)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/src/main/java/shook/shook/auth/config/AuthConfig.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/src/main/java/shook/shook/auth/config/AuthConfig.java b/backend/src/main/java/shook/shook/auth/config/AuthConfig.java index 0f7a1c22..59f446a4 100644 --- a/backend/src/main/java/shook/shook/auth/config/AuthConfig.java +++ b/backend/src/main/java/shook/shook/auth/config/AuthConfig.java @@ -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); }