Skip to content

Commit

Permalink
[Feat] 도서 검색 API 허용
Browse files Browse the repository at this point in the history
  • Loading branch information
82everywin committed Feb 19, 2025
1 parent bbaa48e commit 9876635
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.requestMatchers("/swagger-ui/**","swagger-ui/index.html#/","/v3/api-docs/**", "/swagger-resources/**").permitAll()
.requestMatchers("/api/v1/users/sign-up", "/api/v1/users/sign-in","/api/v1/users/reissue","/api/v1/users/test/**").permitAll()
.requestMatchers("/api/v1/users/email", "/api/v1/users/email/verify").permitAll()
.requestMatchers("/api/v1/books/**").permitAll()
.requestMatchers("/api/v1/oauth2/test").permitAll()
.requestMatchers( "/oauth2/**", "/login/oauth2/code/**").permitAll()
.anyRequest().authenticated())
Expand Down

0 comments on commit 9876635

Please sign in to comment.