Skip to content

Commit

Permalink
update :: Orders config 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ta2ye0n committed May 27, 2024
1 parent 78e0e49 commit ab48bf6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.requestMatchers(HttpMethod.POST, "/api/v2/order").authenticated()
.requestMatchers(HttpMethod.DELETE, "/api/v2/order/{order_id}").authenticated()
.requestMatchers(HttpMethod.PATCH, "/api/v2/order/{order_id}").authenticated()
.requestMatchers(HttpMethod.GET, "/api/v2/order").authenticated()
.requestMatchers(HttpMethod.GET, "/api/v2/order").hasAnyAuthority(Authority.ROLE_TEACHER.name(), Authority.ROLE_HELPER.name())

// goal
.requestMatchers(HttpMethod.POST, "/api/v2/goal").authenticated()
Expand Down

0 comments on commit ab48bf6

Please sign in to comment.