16 lines
426 B
JavaScript
16 lines
426 B
JavaScript
angular.module('portainer.app').component('endpointsDatatable', {
|
|
templateUrl: 'app/portainer/components/datatables/endpoints-datatable/endpointsDatatable.html',
|
|
controller: 'GenericDatatableController',
|
|
bindings: {
|
|
titleText: '@',
|
|
titleIcon: '@',
|
|
dataset: '<',
|
|
tableKey: '@',
|
|
orderBy: '@',
|
|
reverseOrder: '<',
|
|
endpointManagement: '<',
|
|
accessManagement: '<',
|
|
removeAction: '<'
|
|
}
|
|
});
|