Skip to content

Commit

Permalink
[FIX] SecurityConfig 수정
Browse files Browse the repository at this point in the history
- 소모임 비로그인 접근 범위 수정 (전체조회만)
  • Loading branch information
c0smosaur authored Jun 7, 2024
1 parent 058a64c commit a2acd68
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
// 카테고리 조회
"/api/v1/category/*",

//소모임
"/api/v1/club/**").permitAll()
//소모임 - 비로그인 범위
"/api/v1/club/search").permitAll()

.anyRequest().authenticated())
.sessionManagement(session -> session.sessionCreationPolicy(SessionCreationPolicy.STATELESS))
Expand Down

0 comments on commit a2acd68

Please sign in to comment.