Skip to content

Commit

Permalink
#120 chore: 복구 이메일 중복 확인 api 권한 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
letskuku committed Feb 17, 2024
1 parent f1a3ff3 commit 8d31589
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
.authorizeHttpRequests( // TODO 여기 더 나은 방법이 있을 것 같은데 일단 동작은 하니까 두고 추후에 리팩토링...ㅠㅠ
requests -> requests.requestMatchers("/error", "/swagger-ui/**", "/api-docs/**",
"/api/v1/auth/signUp", "/api/v1/auth/signIn", "/api/v1/auth/reissue",
"/api/v1/auth/find-id", "/api/v1/auth/find-password", "/api/v1/emails/**").permitAll()
"/api/v1/auth/find-id", "/api/v1/auth/find-password", "/api/v1/auth/recovery-email/**", "/api/v1/emails/**").permitAll()
.requestMatchers("/api/v1/counselors/all/**", "/api/v1/searchWords/results", "/api/v1/reviews/all/**").permitAll()
.requestMatchers("/index.html", "/favicon.ico", "/chat/**", "/customer.html",
"/counselor.html").permitAll()
Expand Down

0 comments on commit 8d31589

Please sign in to comment.