1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 18:21:12 +03:00

Redirect to edit and listing after creation, fixed creation bug

This commit is contained in:
Ken Hoes 2016-04-29 09:32:26 -04:00
parent 293db554c5
commit 2897ca8e23

View File

@ -22,7 +22,6 @@
) {
ClearScope();
// Inject dynamic view
var defaultUrl = GetBasePath('job_templates'),
form = JobTemplateForm(),
@ -319,8 +318,8 @@
});
function saveCompleted() {
$state.go('jobTemplates', null, {reload: true});
function saveCompleted(id) {
$state.go('jobTemplates.edit', {template_id: id}, {reload: true});
}
if ($scope.removeTemplateSaveSuccess) {
@ -407,13 +406,6 @@
.then(function() {
$scope.addedItem = data.id;
Refresh({
scope: $scope,
set: 'job_templates',
iterator: 'job_template',
url: $scope.current_url
});
if($scope.survey_questions &&
$scope.survey_questions.length > 0){
//once the job template information
@ -444,7 +436,7 @@
});
}
saveCompleted();
saveCompleted(data.id);
});
});
});
@ -514,7 +506,8 @@
Rest.post(data)
.success(function(data) {
$scope.$emit('templateSaveSuccess',
data);
data
);
})
.error(function (data, status) {
ProcessErrors($scope, data, status, form,