public function KeycloakRoleMatcher::isSplitGroupsEnabled in Keycloak OpenID Connect 8
Whether splitting group paths is enabled.
Return value
bool TRUE, if splitting group paths is enabled, FALSE otherwise.
1 call to KeycloakRoleMatcher::isSplitGroupsEnabled()
- KeycloakRoleMatcher::applyRoleRules in src/
Service/ KeycloakRoleMatcher.php - Applies user role rules to the given user account.
File
- src/
Service/ KeycloakRoleMatcher.php, line 169
Class
- KeycloakRoleMatcher
- Role matcher service.
Namespace
Drupal\keycloak\ServiceCode
public function isSplitGroupsEnabled() {
return $this->config
->get('settings.keycloak_groups.split_groups');
}