From 8990bd07222de193e02e9ee9cbeff230bd9e8aad Mon Sep 17 00:00:00 2001 From: Klaus Date: Tue, 30 Sep 2025 17:37:15 +0900 Subject: [PATCH] =?UTF-8?q?fix(payverse):=20webhook=20=EC=97=94=EB=93=9C?= =?UTF-8?q?=ED=8F=AC=EC=9D=B8=ED=8A=B8=EB=8A=94=20=EB=A1=9C=EA=B7=B8?= =?UTF-8?q?=EC=9D=B8=20=ED=95=98=EC=A7=80=20=EC=95=8A=EB=8D=94=EB=9D=BC?= =?UTF-8?q?=EB=8F=84=20=EC=8B=A4=ED=96=89=EB=90=98=EB=8F=84=EB=A1=9D=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../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 cc42fbb..337f74e 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/configs/SecurityConfig.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/configs/SecurityConfig.kt @@ -96,6 +96,7 @@ class SecurityConfig( .antMatchers(HttpMethod.GET, "/api/chat/character/main").permitAll() .antMatchers(HttpMethod.GET, "/api/chat/room/list").permitAll() .antMatchers(HttpMethod.GET, "/api/chat/original/list").permitAll() + .antMatchers(HttpMethod.POST, "/charge/payverse/webhook").permitAll() .anyRequest().authenticated() .and() .build()