Skip to content

Commit

Permalink
Merge pull request #353 from bcgov/feature/redis-update
Browse files Browse the repository at this point in the history
Add routing rule
  • Loading branch information
TayGov authored Sep 26, 2023
2 parents ad271e0 + 6b8d229 commit 75b9434
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {

http.authorizeHttpRequests(requests -> requests
.requestMatchers("/actuator/**").permitAll()
.requestMatchers("/documents/webhookEvent").permitAll()
.anyRequest().authenticated());

http.oauth2ResourceServer((oauth2) -> oauth2.jwt(jwt -> jwt.jwtAuthenticationConverter(keycloakJwtAuthConverter)));
Expand Down

0 comments on commit 75b9434

Please sign in to comment.