public function KeycloakRoleMatcher::getSplitGroupsLimit in Keycloak OpenID Connect 8
Return the maximum allowed nesting level for group path splitting.
Return value
int The maximum allowed nesting limit of split group paths.
1 call to KeycloakRoleMatcher::getSplitGroupsLimit()
- KeycloakRoleMatcher::applyRoleRules in src/
Service/ KeycloakRoleMatcher.php - Applies user role rules to the given user account.
File
- src/
Service/ KeycloakRoleMatcher.php, line 179
Class
- KeycloakRoleMatcher
- Role matcher service.
Namespace
Drupal\keycloak\ServiceCode
public function getSplitGroupsLimit() {
return $this->config
->get('settings.keycloak_groups.split_groups_limit');
}