Skip to content

Commit

Permalink
MAT-6739: Update endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmcphillips committed Mar 28, 2024
1 parent a4dd173 commit 0275260
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
@EnableMethodSecurity
public class SecurityConfig {

private static final String[] CSRF_WHITELIST = {"/cql-libraries/*/ownership"};
private static final String[] AUTH_WHITELIST = {"/actuator/**", "/cql-libraries/*/ownership"};
private static final String[] CSRF_WHITELIST = {"/cql-libraries/*/ownership", "cql-libraries/cql"};
private static final String[] AUTH_WHITELIST = {"/actuator/**", "/cql-libraries/*/ownership", "cql-libraries/cql"};


@Bean
protected SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
Expand Down

0 comments on commit 0275260

Please sign in to comment.