Skip to content

Commit

Permalink
[Chore]: 내 즐겨찾기 스페이스 비로그인 비허용
Browse files Browse the repository at this point in the history
  • Loading branch information
JaeyoungAhn committed Nov 21, 2023
1 parent 4cd4952 commit bd8744f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
config
.requestMatchers("/spaces/search/me").authenticated()
.requestMatchers("/members/profile").authenticated()
.requestMatchers("/favorites/me").authenticated()
.requestMatchers(HttpMethod.GET).permitAll() // 임시로 풀어준 것 운영시에는 허용 주소 관리
.requestMatchers("/members/join").permitAll()
.requestMatchers("/members/emails/**").permitAll()
Expand Down

0 comments on commit bd8744f

Please sign in to comment.