From 8ecf8982f00584da1d62bea5ec6e1af02bc982c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=95=ED=95=98=EB=AF=BC?= Date: Mon, 29 Dec 2025 08:22:09 +0900 Subject: [PATCH] =?UTF-8?q?add=20::=20ws-stomp=20=EA=B2=BD=EB=A1=9C=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../team/cklob/gami/global/security/config/SecurityConfig.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/com/team/cklob/gami/global/security/config/SecurityConfig.java b/src/main/java/com/team/cklob/gami/global/security/config/SecurityConfig.java index ba256e2e..09581e54 100644 --- a/src/main/java/com/team/cklob/gami/global/security/config/SecurityConfig.java +++ b/src/main/java/com/team/cklob/gami/global/security/config/SecurityConfig.java @@ -123,6 +123,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { // WEBSOCKET .requestMatchers("/ws/**").permitAll() + .requestMatchers("/ws-stomp/**").permitAll() .anyRequest().denyAll() )