Skip to content

Commit

Permalink
fix: findList API 변경으로 인한 SecurityConfig 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
baekhangyeol committed Sep 28, 2023
1 parent 45e627c commit 4576543
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity httpSecurity) throws
.antMatchers("/api/v1/auth/signup",
"/api/v1/auth/signin",
"/api/v1/auth/logout",
"/api/v1/projects/search",
"/api/v1/projects",
"/swagger-ui/**").permitAll()
.antMatchers(HttpMethod.GET, "/api/v1/projects/{projectId}").permitAll()
.antMatchers(HttpMethod.GET, "/api/v1/comments/{commentId}").permitAll()
Expand Down

0 comments on commit 4576543

Please sign in to comment.