Link from Inventories tab, hosts, Failed events now redirects to /jobs/N/job_events?host=<host_name>, displaying most recent job events for the host.

This commit is contained in:
chouseknecht
2013-06-19 15:20:23 -04:00
parent 6b8deab753
commit 15b720b42b
5 changed files with 43 additions and 2 deletions

View File

@@ -46,8 +46,16 @@ function JobEventsList ($scope, $rootScope, $location, $log, $routeParams, Rest,
SearchInit({ scope: scope, set: 'jobevents', list: list, url: defaultUrl });
PaginateInit({ scope: scope, list: list, url: defaultUrl });
scope.search(list.iterator);
// Called from Inventories tab host failed events link:
if ($routeParams.host) {
scope[list.iterator + 'SearchField'] = 'host';
scope[list.iterator + 'SearchValue'] = $routeParams.host;
scope[list.iterator + 'SearchFieldLabel'] = list.fields['host'].label;
}
scope.search(list.iterator);
scope.toggleChildren = function(id, children) {
ToggleChildren({
scope: scope,