JWT 토큰 임시 허용

This commit is contained in:
cyjadela
2025-10-24 14:20:44 +09:00
parent d55b2cd7af
commit a9da2e54ca
2 changed files with 348 additions and 0 deletions
@@ -47,6 +47,8 @@ public class SecurityConfig {
.requestMatchers("/health").permitAll()
// WebSocket endpoints
.requestMatchers("/ws/**").permitAll()
// Meeting API endpoints (for testing)
.requestMatchers("/api/meetings/**").permitAll()
// All other requests require authentication
.anyRequest().authenticated()
)