Skip to content

Commit 1e4d42f

Browse files
committed
[chore] /api/ 화이트리스트 추가
1 parent ddf633f commit 1e4d42f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/com/gachigage/global/config/SecurityConfig.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http,
3737
"/swagger-ui.html",
3838
"/v3/api-docs/**",
3939
"/stomp/**",
40-
"/api/stomp/**"
40+
"/api/stomp/**",
41+
"/api/**"
4142
).permitAll()
4243
.requestMatchers(HttpMethod.GET, "/products/**").permitAll()
4344
.anyRequest().authenticated())

0 commit comments

Comments
 (0)