We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 861ae85 commit 2c5d5d5Copy full SHA for 2c5d5d5
backend/src/main/java/com/park/utmstack/config/SecurityConfiguration.java
@@ -115,6 +115,7 @@ public void configure(HttpSecurity http) throws Exception {
115
.antMatchers("/api/**").hasAnyAuthority(AuthoritiesConstants.ADMIN, AuthoritiesConstants.USER)
116
.antMatchers("/ws/topic").hasAuthority(AuthoritiesConstants.ADMIN)
117
.antMatchers("/ws/**").permitAll()
118
+ .antMatchers("/management/info").permitAll()
119
.antMatchers("/management/**").hasAnyAuthority(AuthoritiesConstants.ADMIN, AuthoritiesConstants.USER)
120
.and()
121
.apply(securityConfigurerAdapterForJwt())
0 commit comments