You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AccessPathChecker allows NavigationAccessControl to check if a Flow view is protected by a security mechanism based on URLs.
An implementation for Quarkus should probably inspect AuthRuntimeConfig.permissions and apply rules defined in PolicyMappingConfig.
Another way could be to use the PathMatchingHttpSecurityPolicy bean exposed by quarkus-vertx-http, either by calling checkPermission on it or on the list of policy returned by findPermissionCheckers.
Both methods require a mock implementation of RoutingContext (could a JDK proxy be enough?)
The text was updated successfully, but these errors were encountered:
AccessPathChecker
allowsNavigationAccessControl
to check if a Flow view is protected by a security mechanism based on URLs.An implementation for Quarkus should probably inspect
AuthRuntimeConfig.permissions
and apply rules defined inPolicyMappingConfig
.Another way could be to use the
PathMatchingHttpSecurityPolicy
bean exposed byquarkus-vertx-http
, either by callingcheckPermission
on it or on the list of policy returned byfindPermissionCheckers
.Both methods require a mock implementation of
RoutingContext
(could a JDK proxy be enough?)The text was updated successfully, but these errors were encountered: