Skip to content

Commit

Permalink
Chore(be): 구독 부분 permitAll로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
devbattery committed Feb 5, 2025
1 parent d9f5434 commit 5c13a1f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions be/src/main/java/movlit/be/common/config/SecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http, CorsConfigurat
.requestMatchers(HttpMethod.GET, "/api/noti/newGroupChat/*").authenticated()
.requestMatchers(HttpMethod.DELETE, "/api/notification/*").authenticated()
.requestMatchers(HttpMethod.GET, "/api/members/id").authenticated()
// FIXME: 시큐리티에 @Async로 비동기 설정
.requestMatchers(HttpMethod.GET, "/api/subscribe/*").authenticated()
.requestMatchers(HttpMethod.GET, "/api/subscribe/*").permitAll() // TODO: 권한 주기
.requestMatchers("/collect/indices/**", "/collect/movie/**", "/discover",
"/websocket/**", "/echo", "/api/members/login", "/img/**", "/js/**", "/css/**",
"/error/**", "api/books/**", "/ws-stomp/**", "/notification/**")
Expand Down

0 comments on commit 5c13a1f

Please sign in to comment.