BAEL-315 change access in the config server to only users with SYSTEM level access.
This commit is contained in:
parent
72c4fd84d4
commit
a310184efa
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue