Skip to content

Commit fb8d28a

Browse files
committed
Fix: 스터디 룸 내 잡혀 있어 오류난 룸 채팅 파트 부분 허용
1 parent 318aa41 commit fb8d28a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
3030
auth -> auth
3131
.requestMatchers("/api/auth/**").permitAll()
3232
.requestMatchers("/api/ws/**").permitAll()
33-
//.requestMatchers("/api/rooms/**").permitAll() // 테스트용 임시 허용
33+
.requestMatchers("/api/chat/**").permitAll() // 스터디 룸 내에 잡혀있어 테스트 오류난 채팅 부분 임시 허용
34+
//.requestMatchers("/api/rooms/RoomChatApiControllerTest").permitAll() // 테스트용 임시 허용
3435
.requestMatchers("/","/swagger-ui/**", "/v3/api-docs/**").permitAll() // Swagger 허용
3536
.requestMatchers("/h2-console/**").permitAll() // H2 Console 허용
3637
.anyRequest().authenticated()

0 commit comments

Comments
 (0)