mirror of
https://github.com/portainer/portainer.git
synced 2025-07-21 06:19:41 +02:00
25 lines
624 B
JavaScript
25 lines
624 B
JavaScript
|
angular.module('ui').component('containersDatatable', {
|
||
|
templateUrl: 'app/directives/ui/datatables/containers-datatable/containersDatatable.html',
|
||
|
controller: 'ContainersDatatableController',
|
||
|
bindings: {
|
||
|
title: '@',
|
||
|
titleIcon: '@',
|
||
|
dataset: '<',
|
||
|
tableKey: '@',
|
||
|
orderBy: '@',
|
||
|
reverseOrder: '<',
|
||
|
showTextFilter: '<',
|
||
|
showOwnershipColumn: '<',
|
||
|
swarmContainers: '<',
|
||
|
publicUrl: '<',
|
||
|
containerNameTruncateSize: '<',
|
||
|
startAction: '<',
|
||
|
stopAction: '<',
|
||
|
killAction: '<',
|
||
|
restartAction: '<',
|
||
|
pauseAction: '<',
|
||
|
resumeAction: '<',
|
||
|
removeAction: '<'
|
||
|
}
|
||
|
});
|