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 ec74332 commit 2636287Copy full SHA for 2636287
src/main/java/com/back/global/security/SecurityConfig.java
@@ -40,6 +40,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
40
.requestMatchers(HttpMethod.OPTIONS, "/**").permitAll() // CORS Preflight 요청 허용
41
.requestMatchers("/api/auth/**", "/oauth2/**", "/login/oauth2/**").permitAll()
42
.requestMatchers("api/ws/**", "/ws/**").permitAll()
43
+ .requestMatchers(HttpMethod.GET, "/api/posts/**").permitAll()
44
.requestMatchers("/api/rooms/*/messages/**").permitAll() //스터디 룸 내에 잡혀있어 있는 채팅 관련 전체 허용
45
//.requestMatchers("/api/rooms/RoomChatApiControllerTest").permitAll() // 테스트용 임시 허용
46
.requestMatchers("/","/swagger-ui/**", "/v3/api-docs/**").permitAll() // Swagger 허용
0 commit comments