consume the /group/:id/all_hosts endpoint to build subgroups host list, resolves #2640 (#2642)

This commit is contained in:
Leigh Johnson 2016-06-24 16:07:35 -04:00 committed by GitHub
parent c8abafc108
commit 358662765e

View File

@ -47,7 +47,7 @@
return url;
},
childHostsUrl: function(id, failed){
var url = GetBasePath('groups') + id + '/hosts' +
var url = GetBasePath('groups') + id + '/all_hosts' +
(failed === 'true' ? '?has_active_failures=true' : '?');
return url;
},