Skip to content

Commit

Permalink
FIX: now permit all so ci/cd tests will succeed
Browse files Browse the repository at this point in the history
  • Loading branch information
wiemanboy committed Oct 12, 2024
1 parent e7e8388 commit 51ef7c5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ public JwtDecoder jwtDecoder() {
}

@Bean
public SecurityFilterChain configure(HttpSecurity http) throws Exception {
return mock(SecurityFilterChain.class);
public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
return http.authorizeHttpRequests(authorize -> authorize.anyRequest().permitAll()).build();
}

@Bean
Expand Down

0 comments on commit 51ef7c5

Please sign in to comment.