Skip to content

Commit

Permalink
made fetch of tenant categories opened
Browse files Browse the repository at this point in the history
  • Loading branch information
harmlessprince committed Feb 6, 2025
1 parent 353d706 commit 042a7c2
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
.requestMatchers(HttpMethod.POST,"v1/payments/confirm").permitAll()
.requestMatchers(HttpMethod.GET, "v1/generate/session/id").permitAll()
.requestMatchers(HttpMethod.GET, "v1/categories").permitAll()
.requestMatchers(HttpMethod.GET, "/v1/tenant-categories").permitAll()
.requestMatchers(HttpMethod.GET, "v1/reviews/product/{productId}").permitAll()
.requestMatchers("/error").permitAll()
.requestMatchers("/v1/tenants/current").permitAll()
Expand Down

0 comments on commit 042a7c2

Please sign in to comment.