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 72c4fd84d4
commit a310184efa
1 changed files with 1 additions and 1 deletions

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()