Skip to content

Commit

Permalink
feat: remove authority for find review by plannerId
Browse files Browse the repository at this point in the history
  • Loading branch information
1jeongg committed Nov 10, 2023
1 parent 6dd7b34 commit 3f37d5c
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,11 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
new AntPathRequestMatcher("/api/match/**"),
new AntPathRequestMatcher("/api/quotation/**"),
new AntPathRequestMatcher("/api/payment/**"),
new AntPathRequestMatcher("/api/review/**"),
new AntPathRequestMatcher("/api/review/all", "GET"),
new AntPathRequestMatcher("/api/review/{reviewId}", "GET"),
new AntPathRequestMatcher("/api/review/**", "POST"),
new AntPathRequestMatcher("/api/review/**", "PUT"),
new AntPathRequestMatcher("/api/review/**", "DELETE"),
new AntPathRequestMatcher("/api/favorite/**")
).authenticated()
.anyRequest().permitAll()
Expand Down

0 comments on commit 3f37d5c

Please sign in to comment.