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

Merge branch '6.2.x'

Closes gh-15144
This commit is contained in:
Marcus Hert Da Coregio
2024-05-23 08:17:26 -03:00
@@ -1074,7 +1074,7 @@ class MethodSecurityConfig {
@Bean
@Role(BeanDefinition.ROLE_INFRASTRUCTURE)
Advisor postAuthorize() {
return AuthorizationManagerBeforeMethodInterceptor.postAuthorize();
return AuthorizationManagerAfterMethodInterceptor.postAuthorize();
}
}
----
@@ -1089,7 +1089,7 @@ class MethodSecurityConfig {
@Bean
@Role(BeanDefinition.ROLE_INFRASTRUCTURE)
fun postAuthorize() : Advisor {
return AuthorizationManagerBeforeMethodInterceptor.postAuthorize()
return AuthorizationManagerAfterMethodInterceptor.postAuthorize()
}
}
----