BAEL-315 change access in the config server to only users with SYSTEM level access.

This commit is contained in:
Tim Schimandle 2016-10-05 07:18:23 -06:00
parent 317b596dd9
commit c6480e025b

View File

@ -23,7 +23,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.anyRequest().authenticated()
.anyRequest().hasRole("SYSTEM")
.and()
.httpBasic()
.and()