Skip to content

Commit

Permalink
add :: url 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Umjiseung committed Apr 12, 2024
1 parent 66d6041 commit 8c6d0f0
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.requestMatchers(HttpMethod.PATCH, "api/v2/order/{order_id}").authenticated()
.requestMatchers(HttpMethod.GET, "api/v2/order").authenticated()

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

.anyRequest().authenticated()
)

Expand Down

0 comments on commit 8c6d0f0

Please sign in to comment.