Updated permission for prometheus
This commit is contained in:
parent
60fd3e9b41
commit
18e1e55553
|
@ -90,8 +90,7 @@ public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
|
||||||
.permitAll().antMatchers("/api/account/reset-password/init").permitAll()
|
.permitAll().antMatchers("/api/account/reset-password/init").permitAll()
|
||||||
.antMatchers("/api/account/reset-password/finish").permitAll().antMatchers("/api/**").authenticated()
|
.antMatchers("/api/account/reset-password/finish").permitAll().antMatchers("/api/**").authenticated()
|
||||||
.antMatchers("/management/health").permitAll().antMatchers("/management/info").permitAll()
|
.antMatchers("/management/health").permitAll().antMatchers("/management/info").permitAll()
|
||||||
.antMatchers("/management/prometheus")
|
.antMatchers("/management/prometheus").permitAll()
|
||||||
.hasAnyAuthority(AuthoritiesConstants.ADMIN, AuthoritiesConstants.PROMETHEUS)
|
|
||||||
.antMatchers("/management/jhimetrics")
|
.antMatchers("/management/jhimetrics")
|
||||||
.hasAnyAuthority(AuthoritiesConstants.ADMIN, AuthoritiesConstants.PROMETHEUS)
|
.hasAnyAuthority(AuthoritiesConstants.ADMIN, AuthoritiesConstants.PROMETHEUS)
|
||||||
.antMatchers("/management/**").hasAuthority(AuthoritiesConstants.ADMIN);
|
.antMatchers("/management/**").hasAuthority(AuthoritiesConstants.ADMIN);
|
||||||
|
|
Loading…
Reference in New Issue