2018-02-01 12:27:52 +00:00
|
|
|
angular.module('portainer.docker').component('servicesDatatable', {
|
|
|
|
templateUrl: 'app/docker/components/datatables/services-datatable/servicesDatatable.html',
|
2018-06-11 13:13:19 +00:00
|
|
|
controller: 'ServicesDatatableController',
|
2017-12-06 11:04:02 +00:00
|
|
|
bindings: {
|
2018-06-06 16:12:35 +00:00
|
|
|
titleText: '@',
|
2017-12-06 11:04:02 +00:00
|
|
|
titleIcon: '@',
|
|
|
|
dataset: '<',
|
|
|
|
tableKey: '@',
|
|
|
|
orderBy: '@',
|
|
|
|
reverseOrder: '<',
|
2018-06-11 13:13:19 +00:00
|
|
|
nodes: '<',
|
|
|
|
agentProxy: '<',
|
2017-12-06 11:04:02 +00:00
|
|
|
showOwnershipColumn: '<',
|
2018-06-11 13:13:19 +00:00
|
|
|
showUpdateAction: '<',
|
|
|
|
showAddAction: '<',
|
|
|
|
showStackColumn: '<',
|
|
|
|
showTaskLogsButton: '<'
|
2017-12-06 11:04:02 +00:00
|
|
|
}
|
|
|
|
});
|