mirror of https://github.com/portainer/portainer
19 lines
506 B
JavaScript
19 lines
506 B
JavaScript
import angular from 'angular';
|
|
|
|
import { EdgeStackEndpointsDatatableController } from './edgeStackEndpointsDatatableController';
|
|
|
|
angular.module('portainer.edge').component('edgeStackEndpointsDatatable', {
|
|
templateUrl: './edgeStackEndpointsDatatable.html',
|
|
controller: EdgeStackEndpointsDatatableController,
|
|
bindings: {
|
|
titleText: '@',
|
|
titleIcon: '@',
|
|
tableKey: '@',
|
|
orderBy: '@',
|
|
reverseOrder: '<',
|
|
retrievePage: '<',
|
|
edgeStackId: '<',
|
|
endpointsStatus: '<',
|
|
},
|
|
});
|