Skip to content

Commit

Permalink
chore: SecurityConfig url 추가 (#229)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyeong-hyeok committed Jun 3, 2024
1 parent 0d83c46 commit eba2660
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ public SecurityFilterChain filterChain(HttpSecurity http, HandlerMappingIntrospe
.requestMatchers(mvcMatcherBuilder.pattern("/volunteers/login/social")).permitAll()
.requestMatchers(mvcMatcherBuilder.pattern("/volunteers/sign-up")).permitAll()
.requestMatchers(mvcMatcherBuilder.pattern("/volunteers/sign-up/email")).permitAll()
.requestMatchers(mvcMatcherBuilder.pattern("/volunteers/search/**")).permitAll()
.requestMatchers(mvcMatcherBuilder.pattern("/intermediaries/search/**")).permitAll()
.requestMatchers(mvcMatcherBuilder.pattern("/intermediaries/phone/isDuplicated")).permitAll()
.requestMatchers(mvcMatcherBuilder.pattern("/intermediaries/sign-up/**")).permitAll()
.requestMatchers(mvcMatcherBuilder.pattern("/reissue-token")).permitAll()
Expand Down

0 comments on commit eba2660

Please sign in to comment.