bansho/app/components/directive/table/cell_status_host_status/cell_status_host_status.js

12 lines
367 B
JavaScript

'use strict';
angular.module('bansho.table.cell_status_host_status', ['bansho.table'])
.controller('CellStatusHostStatusCtrl', ['$scope', function ($scope) {
angular.noop();
}])
.run(['tableGlobalConfig', function (tableGlobalConfig) {
tableGlobalConfig.cellToFieldsMap.status_host_status = ['state', 'last_check', 'parents'];
}]);