From 2ce3f59022d9fe1ae48978b2ceddd16065331882 Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Fri, 20 Jun 2025 01:54:04 +0000 Subject: [PATCH] modified allowance --- .../java/com/won/smarketing/store/config/SecurityConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smarketing-java/store/src/main/java/com/won/smarketing/store/config/SecurityConfig.java b/smarketing-java/store/src/main/java/com/won/smarketing/store/config/SecurityConfig.java index 98fdc41..13b6f8c 100644 --- a/smarketing-java/store/src/main/java/com/won/smarketing/store/config/SecurityConfig.java +++ b/smarketing-java/store/src/main/java/com/won/smarketing/store/config/SecurityConfig.java @@ -48,7 +48,7 @@ public class SecurityConfig .sessionManagement(session -> session.sessionCreationPolicy(SessionCreationPolicy.STATELESS)) .authorizeHttpRequests(auth -> auth .requestMatchers("/api/auth/**", "/api/member/register", "/api/member/check-duplicate/**", - "/api/member/validate-password", "/swagger-ui/**", "/v3/api-docs/**", + "/api/member/validate-password", "/api/images/**","/api/menu/**","/swagger-ui/**", "/v3/api-docs/**", "/swagger-resources/**", "/webjars/**", "/actuator/**", "/health/**", "/error" ).permitAll() .anyRequest().authenticated()