Skip to content

Commit f56f33f

Browse files
authored
Update SecurityConfig.java
1 parent 9e14cbc commit f56f33f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/subproblem/fitnesstrackingapp/config/SecurityConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
3333
.csrf(csrf -> csrf.disable())
3434
.authorizeHttpRequests(auth ->
3535
auth.requestMatchers("/api/v1/auth/**").permitAll()
36-
.requestMatchers("/api/v1/test).permitAll()
36+
.requestMatchers("/api/v1/test").permitAll()
3737

3838
.requestMatchers("/api/v1/secured/user/**").hasAnyRole(USER.name())
3939
.requestMatchers(HttpMethod.GET, "/api/v1/secured/user/**").hasAuthority(USER_READ.name())

0 commit comments

Comments
 (0)