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 fb8d28a commit 8aef6c1Copy full SHA for 8aef6c1
src/main/java/com/back/global/security/SecurityConfig.java
@@ -30,7 +30,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
30
auth -> auth
31
.requestMatchers("/api/auth/**").permitAll()
32
.requestMatchers("/api/ws/**").permitAll()
33
- .requestMatchers("/api/chat/**").permitAll() // 스터디 룸 내에 잡혀있어 테스트 오류난 채팅 부분 임시 허용
+ .requestMatchers("/api/rooms/*/messages/**").permitAll() //스터디 룸 내에 잡혀있어 있는 채팅 관련 전체 허용
34
//.requestMatchers("/api/rooms/RoomChatApiControllerTest").permitAll() // 테스트용 임시 허용
35
.requestMatchers("/","/swagger-ui/**", "/v3/api-docs/**").permitAll() // Swagger 허용
36
.requestMatchers("/h2-console/**").permitAll() // H2 Console 허용
0 commit comments