Skip to content

Commit 64b732e

Browse files
authored
Merge pull request #352 from prgrms-web-devcourse-final-project/develop
Fix : 인가 수정 (#351)
2 parents 7a89438 + bfddafb commit 64b732e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

back/src/main/java/com/back/global/security/SecurityConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
3131
.requestMatchers("/actuator/**").permitAll()
3232
.requestMatchers("/swagger-ui/**", "/v3/api-docs/**", "/swagger-resources/**").permitAll()
3333
.requestMatchers("/ws-chat/**").permitAll()
34+
.requestMatchers("/news/**").permitAll()
3435
.anyRequest().authenticated()
3536
)
3637
.headers(headers -> headers

0 commit comments

Comments
 (0)