stats no longer require authentication
This commit is contained in:
parent
5a5742978f
commit
777d87c564
|
@ -62,6 +62,7 @@ public class AaiSecurityConfiguration extends WebSecurityConfigurerAdapter {
|
|||
http.csrf().disable()
|
||||
.anonymous().disable()
|
||||
.authorizeRequests()
|
||||
.antMatchers("/stats").permitAll()
|
||||
.anyRequest().authenticated()
|
||||
.and()
|
||||
.httpBasic()
|
||||
|
|
Loading…
Reference in New Issue