mirror of https://github.com/portainer/portainer
17 lines
458 B
JavaScript
17 lines
458 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: '<',
|
|
},
|
|
});
|