Fix assorted UI error messages to reference the correct REST requests.

Noticed when James commented on one specific posted error that it shouldn't be doing a PUT instead of a POST; turns out the error was just copy/pasted wrong.
This commit is contained in:
Bill Nottingham
2015-01-19 10:56:10 -05:00
parent 6cb7f911b7
commit 3df996f999
6 changed files with 8 additions and 8 deletions

View File

@@ -101,7 +101,7 @@ angular.module('JobSubmissionHelper', [ 'RestServices', 'Utilities', 'Credential
})
.error(function(data, status) {
ProcessErrors(scope, data, status, null, { hdr: 'Error!',
msg: 'Failed updating job ' + scope.job_template_id + ' with variables. PUT returned: ' + status });
msg: 'Failed updating job ' + scope.job_template_id + ' with variables. POST returned: ' + status });
});
});