Skip to content

Commit

Permalink
Add missing endpoint on non-auth.
Browse files Browse the repository at this point in the history
  • Loading branch information
veigap committed Mar 26, 2024
1 parent 8b583bf commit 21dfcf3
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ SecurityFilterChain apiSecurityFilterChain(@NotNull final HttpSecurity http, @No
.requestMatchers(mvc.pattern("/api/restful/authenticate")).permitAll()
.requestMatchers(mvc.pattern("/api/restful/users/")).permitAll()
.requestMatchers(mvc.pattern("/api/restful/app/config")).permitAll()
.requestMatchers(mvc.pattern("/api/restful/maps/*/metadata")).permitAll()
.requestMatchers(mvc.pattern("/api/restful/maps/*/document/xml-pub")).permitAll()
.requestMatchers(mvc.pattern("/api/restful/users/resetPassword")).permitAll()
.requestMatchers(mvc.pattern("/api/restful/oauth2/googlecallback")).permitAll()
Expand Down

0 comments on commit 21dfcf3

Please sign in to comment.