Skip to content

Commit

Permalink
🚑 hotfix(api): hotfix when return 500 error idfv is null (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
seonghun-dev authored Aug 5, 2023
1 parent d22ca4d commit a200f08
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.requestMatchers("/users/*").authenticated()
.requestMatchers("/users/me/*").authenticated()
.requestMatchers("/users/me/items/*").authenticated()
.requestMatchers(HttpMethod.GET, "/items/*").authenticated()
.requestMatchers(HttpMethod.POST, "/items/*").authenticated()
.requestMatchers(HttpMethod.PATCH, "/items/*").authenticated()
.requestMatchers(HttpMethod.DELETE, "/items/*").authenticated()
.requestMatchers("/items/**").authenticated()
.requestMatchers(HttpMethod.POST, "notifications/tokens").authenticated()
.anyRequest().permitAll().and()
.anonymous().and()
Expand Down

0 comments on commit a200f08

Please sign in to comment.