KEYCLOAK-3679: Add new flow, default (browser) flow always shown.

This commit is contained in:
Stan Silvert 2016-10-07 14:32:23 -04:00
parent 6acd9cdf1d
commit 06dcf99b42

View file

@ -1811,6 +1811,8 @@ module.controller('CreateExecutionFlowCtrl', function($scope, realm, topFlow, pa
Notifications, $location) {
$scope.realm = realm;
$scope.formProviders = formProviders;
var returnToTopFlow = parentFlow.topLevel ? parentFlow.alias : topFlow;
var defaultFlowType = parentFlow.providerId == 'client-flow' ? 'client-flow' : 'basic-flow';
$scope.flow = {
@ -1826,12 +1828,12 @@ module.controller('CreateExecutionFlowCtrl', function($scope, realm, topFlow, pa
$scope.save = function() {
$scope.flow.provider = $scope.provider.id;
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/" + returnToTopFlow);
Notifications.success("Flow Created.");
})
}
$scope.cancel = function() {
$location.url("/realms/" + realm.realm + "/authentication/flows/" + topFlow);
$location.url("/realms/" + realm.realm + "/authentication/flows/" + returnToTopFlow);
};
});
@ -1840,6 +1842,9 @@ module.controller('CreateExecutionCtrl', function($scope, realm, topFlow, parent
Notifications, $location) {
$scope.realm = realm;
$scope.parentFlow = parentFlow;
var returnToTopFlow = parentFlow.topLevel ? parentFlow.alias : topFlow;
if (parentFlow.providerId == 'form-flow') {
$scope.providers = formActionProviders;
} else if (parentFlow.providerId == 'client-flow') {
@ -1858,12 +1863,12 @@ module.controller('CreateExecutionCtrl', function($scope, realm, topFlow, parent
provider: $scope.provider.id
}
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/" + returnToTopFlow);
Notifications.success("Execution Created.");
})
}
$scope.cancel = function() {
$location.url("/realms/" + realm.realm + "/authentication/flows/" + topFlow);
$location.url("/realms/" + realm.realm + "/authentication/flows/" + returnToTopFlow);
};
});