KEYCLOAK-1969
Admin console displays Clients flow page when execution or execution flow is created.
This commit is contained in:
parent
a6556a49c2
commit
eb9f69eee0
1 changed files with 5 additions and 5 deletions
|
@ -1657,12 +1657,12 @@ module.controller('CreateExecutionFlowCtrl', function($scope, realm, topFlow, pa
|
||||||
$scope.save = function() {
|
$scope.save = function() {
|
||||||
$scope.flow.provider = $scope.provider.id;
|
$scope.flow.provider = $scope.provider.id;
|
||||||
CreateExecutionFlow.save({realm: realm.realm, alias: parentFlow.alias}, $scope.flow, function() {
|
CreateExecutionFlow.save({realm: realm.realm, alias: parentFlow.alias}, $scope.flow, function() {
|
||||||
$location.url("/realms/" + realm.realm + "/authentication/flows/" + topFlow);
|
$location.url("/realms/" + realm.realm + "/authentication/flows/" + parentFlow.alias);
|
||||||
Notifications.success("Flow Created.");
|
Notifications.success("Flow Created.");
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
$scope.cancel = function() {
|
$scope.cancel = function() {
|
||||||
$location.url("/realms/" + realm.realm + "/authentication/flows/" + topFlow);
|
$location.url("/realms/" + realm.realm + "/authentication/flows/" + parentFlow.alias);
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -1671,7 +1671,7 @@ module.controller('CreateExecutionCtrl', function($scope, realm, topFlow, parent
|
||||||
Notifications, $location) {
|
Notifications, $location) {
|
||||||
$scope.realm = realm;
|
$scope.realm = realm;
|
||||||
$scope.parentFlow = parentFlow;
|
$scope.parentFlow = parentFlow;
|
||||||
console.log('parentFlow.providerId: ' + parentFlow.providerId);
|
console.debug('parentFlow.providerId: ' + parentFlow.providerId);
|
||||||
if (parentFlow.providerId == 'form-flow') {
|
if (parentFlow.providerId == 'form-flow') {
|
||||||
$scope.providers = formActionProviders;
|
$scope.providers = formActionProviders;
|
||||||
} else if (parentFlow.providerId == 'client-flow') {
|
} else if (parentFlow.providerId == 'client-flow') {
|
||||||
|
@ -1690,12 +1690,12 @@ module.controller('CreateExecutionCtrl', function($scope, realm, topFlow, parent
|
||||||
provider: $scope.provider.id
|
provider: $scope.provider.id
|
||||||
}
|
}
|
||||||
CreateExecution.save({realm: realm.realm, alias: parentFlow.alias}, execution, function() {
|
CreateExecution.save({realm: realm.realm, alias: parentFlow.alias}, execution, function() {
|
||||||
$location.url("/realms/" + realm.realm + "/authentication/flows/" + topFlow);
|
$location.url("/realms/" + realm.realm + "/authentication/flows/" + parentFlow.alias);
|
||||||
Notifications.success("Execution Created.");
|
Notifications.success("Execution Created.");
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
$scope.cancel = function() {
|
$scope.cancel = function() {
|
||||||
$location.url("/realms/" + realm.realm + "/authentication/flows/" + topFlow);
|
$location.url("/realms/" + realm.realm + "/authentication/flows/" + parentFlow.alias);
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue