We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f0a9eb commit dcf6f89Copy full SHA for dcf6f89
src/main/java/com/backend/global/security/SecurityConfig.java
@@ -53,7 +53,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
53
.requestMatchers("/uploads/**").permitAll()
54
.requestMatchers("/api/*/test-data/**").permitAll()
55
56
- .anyRequest().authenticated()
+ .anyRequest().permitAll() // 임시 허용 authenticated()로 고칠 것
57
)
58
.headers(headers -> headers.frameOptions(HeadersConfigurer.FrameOptionsConfig::sameOrigin))
59
.csrf(AbstractHttpConfigurer::disable)
0 commit comments