We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9d2cb6 commit efecb7dCopy full SHA for efecb7d
1 file changed
src/main/java/com/backend/global/security/SecurityConfig.java
@@ -51,7 +51,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
51
.requestMatchers("/uploads/**").permitAll()
52
.requestMatchers("/api/*/test-data/**").permitAll()
53
54
- .anyRequest().permitAll() // 임시 허용 authenticated()로 고칠 것
+ .anyRequest().authenticated()
55
)
56
.headers(headers -> headers.frameOptions(HeadersConfigurer.FrameOptionsConfig::sameOrigin))
57
.addFilterBefore(jwtAuthenticationFilter, UsernamePasswordAuthenticationFilter.class)
0 commit comments