Skip to content

Commit

Permalink
feat : securityConfig 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sycuuui committed Jun 11, 2024
1 parent 9446a98 commit 6645f65
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.requestMatchers("/v1/place/main").permitAll()
.requestMatchers("v1/place/review/{placeReviewId}").permitAll()
.requestMatchers("/v1/plan/guest/**").permitAll()
.requestMatchers("/v1/plan/open").permitAll()
.requestMatchers("/v1/plan/search").permitAll()
.requestMatchers("/v1/place/search").permitAll()
// 메인 페이지, 공고 페이지 등에 한해 인증 정보 없이 접근 가능 (추후 추가)
// 이외의 모든 요청은 인증 정보 필요
Expand Down

0 comments on commit 6645f65

Please sign in to comment.