JAVA-14471 Remove remaining code for moved articles

This commit is contained in:
anuragkumawat 2023-01-19 23:43:03 +05:30
parent edd27fda3b
commit 7936998b97
1 changed files with 1 additions and 1 deletions

View File

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