BAEL-315 reformatting some code.
This commit is contained in:
parent
4029a3f547
commit
95b967858e
|
@ -31,9 +31,10 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
|
||||||
protected void configure(HttpSecurity http) throws Exception {
|
protected void configure(HttpSecurity http) throws Exception {
|
||||||
http
|
http
|
||||||
.authorizeRequests()
|
.authorizeRequests()
|
||||||
.anyRequest().authenticated()
|
.anyRequest().authenticated()
|
||||||
.and()
|
.and()
|
||||||
.httpBasic().and()
|
.httpBasic()
|
||||||
.csrf().disable();
|
.and()
|
||||||
|
.csrf().disable();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue