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