fix(payverse): webhook 엔드포인트는 로그인 하지 않더라도 실행되도록 수정

This commit is contained in:
2025-09-30 17:37:15 +09:00
parent aab2417976
commit 8990bd0722

View File

@@ -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()