aviau 990f60c8cd Adapt to new live API
Change-Id: I59a1027a60f7d40c1a6db34e3b2c5588ed608540
2015-05-12 17:39:20 -04:00

12 lines
347 B
JavaScript

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