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

12 lines
318 B
JavaScript

'use strict';
angular.module('bansho.table.cell_config_host_name', ['bansho.table'])
.controller('CellConfigHostNameCtrl', [function () {
angular.noop();
}])
.run(['tableGlobalConfig', function (tableGlobalConfig) {
tableGlobalConfig.cellToFieldsMap.config_host_use = ['name'];
}]);