1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 15:21:13 +03:00

Properly catch and display workflow copy error when basic license installed

This commit is contained in:
mabashian 2017-08-29 11:41:33 -04:00
parent a3b29a196c
commit 2f6e16f7ba

View File

@ -226,10 +226,11 @@ export default ['$scope', '$rootScope',
TemplateCopyService.copyWorkflow(template.id)
.then(function(result) {
$state.go('templates.editWorkflowJobTemplate', {workflow_job_template_id: result.data.id}, {reload: true});
}, function (data) {
})
.catch(function (response) {
Wait('stop');
ProcessErrors($scope, data, status, null, { hdr: 'Error!',
msg: 'Call to copy template failed. POST returned status: ' + status });
ProcessErrors($scope, response.data, response.status, null, { hdr: 'Error!',
msg: 'Call to copy workflow job template failed. Return status: ' + response.status + '.'});
});
}
else {