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.
2 parents 7a89438 + bfddafb commit 64b732eCopy full SHA for 64b732e
back/src/main/java/com/back/global/security/SecurityConfig.java
@@ -31,6 +31,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
31
.requestMatchers("/actuator/**").permitAll()
32
.requestMatchers("/swagger-ui/**", "/v3/api-docs/**", "/swagger-resources/**").permitAll()
33
.requestMatchers("/ws-chat/**").permitAll()
34
+ .requestMatchers("/news/**").permitAll()
35
.anyRequest().authenticated()
36
)
37
.headers(headers -> headers
0 commit comments