Merge pull request #13313 from anuragkumawat/java-14471

JAVA-14471 Remove remaining code for moved articles
This commit is contained in:
Loredana Crusoveanu
2023-01-30 12:10:27 +02:00
committed by GitHub

View File

@@ -30,7 +30,7 @@ class SecurityConfig {
@Bean
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
http.authorizeRequests()
.antMatchers("/customers*", "/users*")
.antMatchers("/customers*")
.hasRole("USER")
.anyRequest()
.permitAll();