Skip to content

Commit

Permalink
Merge pull request #226 from techeer-sv/BE/#225
Browse files Browse the repository at this point in the history
fix: findList API 변경으로 인한 SecurityConfig 변경
  • Loading branch information
baekhangyeol authored Sep 30, 2023
2 parents 45e627c + 4576543 commit 6113fc3
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 6113fc3

Please sign in to comment.