1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Merge branch '6.1.x'

Closes gh-13501
This commit is contained in:
Josh Cummings
2023-07-12 15:02:54 -06:00
@@ -176,7 +176,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.authorizeHttpRequests(authorize -> authorize
.anyRequest().authenticated()
)
.oauth2ResourceServer(OAuth2ResourceServerConfigurer::jwt);
.oauth2ResourceServer((oauth2) -> oauth2.jwt(Customizer.withDefaults()));
return http.build();
}
----