There is implementation of AuthorizationSchema which serves for FGAP purpose.
|
public static final String USERS_RESOURCE_TYPE = "Users"; |
|
public static final ResourceType USERS = new ResourceType(USERS_RESOURCE_TYPE, Set.of("manage")); |
|
public static final AdminPermissionsSchema SCHEMA = new AdminPermissionsSchema(); |
|
|
|
private AdminPermissionsSchema() { |
|
super(Map.of(USERS_RESOURCE_TYPE, USERS)); |
|
} |
We should add "Groups" resource type and its scopes.
As well as the appropriate AdminPermissionEvaluation implementation to support E2E experience.