Skip to content

Commit 8fa3350

Browse files
committed
fix: enable the request matcher
1 parent aa303bf commit 8fa3350

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/iemr/tm/utils/mapper/SecurityConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
3939
.csrf(csrf -> csrf.disable())
4040
.sessionManagement(session -> session.sessionCreationPolicy(SessionCreationPolicy.STATELESS))
4141
.authorizeHttpRequests(auth -> auth
42-
// .requestMatchers("/user/*").permitAll()
42+
.requestMatchers("/user/*").permitAll()
4343
.anyRequest().authenticated()
4444
)
4545
.exceptionHandling(ex -> ex

0 commit comments

Comments
 (0)