Skip to content
Snippets Groups Projects
Commit 0ca82e5a authored by Sascha Herzinger's avatar Sascha Herzinger
Browse files

updated global security config

parent 92432fe5
No related branches found
No related tags found
2 merge requests!836Resolve "Implement Spring Security",!613WIP: New Minerva Security Layer
......@@ -88,7 +88,9 @@ public class SpringSecurityConfig extends WebSecurityConfigurerAdapter {
.deleteCookies(lcsb.mapviewer.common.Configuration.AUTH_TOKEN)
.and()
.authorizeRequests()
.antMatchers("**/minervanet/submitError").permitAll()
.antMatchers("/api/minervanet/submitError").permitAll()
.antMatchers("/api/convert/**").permitAll()
.antMatchers("/api/plugins/**").permitAll()
.anyRequest().authenticated()
.and()
.headers()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment