From b819df96561f9e8a353419c626ba510e841bee2b Mon Sep 17 00:00:00 2001 From: Klaus Date: Fri, 8 Aug 2025 17:31:21 +0900 Subject: [PATCH] =?UTF-8?q?feat(securityConfig):=20=EC=95=84=EB=9E=98=20AP?= =?UTF-8?q?I=EB=8A=94=20=EB=A1=9C=EA=B7=B8=EC=9D=B8=20=ED=95=98=EC=A7=80?= =?UTF-8?q?=20=EC=95=8A=EC=95=84=EB=8F=84=20=EC=A1=B0=ED=9A=8C=ED=95=A0=20?= =?UTF-8?q?=EC=88=98=20=EC=9E=88=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - /api/chat/list --- .../kotlin/kr/co/vividnext/sodalive/configs/SecurityConfig.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/configs/SecurityConfig.kt b/src/main/kotlin/kr/co/vividnext/sodalive/configs/SecurityConfig.kt index 78fb478..de3f665 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/configs/SecurityConfig.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/configs/SecurityConfig.kt @@ -94,6 +94,7 @@ class SecurityConfig( .antMatchers("/ad-tracking/app-launch").permitAll() .antMatchers(HttpMethod.GET, "/notice/latest").permitAll() .antMatchers(HttpMethod.GET, "/api/chat/character/main").permitAll() + .antMatchers(HttpMethod.GET, "/api/chat/list").permitAll() .anyRequest().authenticated() .and() .build()