Skip to content
Snippets Groups Projects
Commit 8c63b7db authored by OZGCloud's avatar OZGCloud
Browse files

OZG-635 permitAll on /search/**

parent e9c65113
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,7 @@ public class SecurityConfiguration extends KeycloakWebSecurityConfigurerAdapter
.antMatchers(HttpMethod.GET, "/api/environment").permitAll()//
.antMatchers(HttpMethod.GET, "/assets/**").permitAll()//
.antMatchers(HttpMethod.GET, "/vorgang/**").permitAll()//
.antMatchers(HttpMethod.GET, "/search/**").permitAll()//
.antMatchers("/api").authenticated()//
.antMatchers("/api/**").authenticated()//
.antMatchers("/actuator").permitAll()//
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment