mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 15:21:13 +03:00
Addressed PR Issues
This commit is contained in:
parent
a7c787af02
commit
b0249a9a8b
@ -49,7 +49,7 @@ export default ['Wait', 'GetBasePath', 'ProcessErrors', 'Rest', 'GetChoices',
|
||||
scope.relatednotificationsRemove();
|
||||
}
|
||||
scope.relatednotificationsRemove = scope.$on('relatednotifications', function () {
|
||||
var columns = ['/notification_templates_started/', '/notification_templates_success/', '/notification_templates_error'];
|
||||
var columns = ['/notification_templates_started/', '/notification_templates_success/', '/notification_templates_error/'];
|
||||
|
||||
GetChoices({
|
||||
scope: scope,
|
||||
@ -59,14 +59,14 @@ export default ['Wait', 'GetBasePath', 'ProcessErrors', 'Rest', 'GetChoices',
|
||||
callback: 'choicesReadyNotifierList'
|
||||
});
|
||||
|
||||
_.map(columns, function(column){
|
||||
var notifier_url = url + id + column;
|
||||
_.map(columns, function(column){
|
||||
var notifier_url = url + id + column;
|
||||
Rest.setUrl(notifier_url);
|
||||
Rest.get()
|
||||
.then(function(response) {
|
||||
let checkForSuccessOrError = response.config.url.indexOf('success')>0 ? "notification_templates_success" : "notification_templates_error";
|
||||
let checkForSuccessOrError = response.config.url.indexOf('success') > 0 ? "notification_templates_success" : "notification_templates_error";
|
||||
|
||||
let type = response.config.url.indexOf('started')>0? "notification_templates_started" : checkForSuccessOrError
|
||||
let type = response.config.url.indexOf('started') > 0 ? "notification_templates_started" : checkForSuccessOrError;
|
||||
|
||||
if (response.data.results) {
|
||||
_.forEach(response.data.results, function(result){
|
||||
|
@ -45,7 +45,7 @@ export default ['Wait', 'ProcessErrors', 'Rest',
|
||||
notifier[column] = !notifier[column];
|
||||
}
|
||||
// Hide the working spinner
|
||||
Wait('stop');
|
||||
Wait('stop');
|
||||
})
|
||||
.catch(({data, status}) => {
|
||||
ProcessErrors(scope, data, status, null, { hdr: 'Error!',
|
||||
|
Loading…
Reference in New Issue
Block a user