KEYCLOAK-6022
This commit is contained in:
parent
b303acaaba
commit
71e6f52f7d
1 changed files with 2 additions and 2 deletions
|
@ -2493,12 +2493,12 @@ module.controller('RoleSelectorModalCtrl', function($scope, realm, config, confi
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.selectRealmRole = function() {
|
$scope.selectRealmRole = function() {
|
||||||
config[configName] = [$scope.selectedRealmRole.role.name];
|
config[configName] = $scope.selectedRealmRole.role.name;
|
||||||
$modalInstance.close();
|
$modalInstance.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
$scope.selectClientRole = function() {
|
$scope.selectClientRole = function() {
|
||||||
config[configName] = [$scope.client.selected.clientId + "." + $scope.selectedClientRole.role.name];
|
config[configName] = $scope.client.selected.clientId + "." + $scope.selectedClientRole.role.name;
|
||||||
$modalInstance.close();
|
$modalInstance.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue