18 lines
404 B
JavaScript
18 lines
404 B
JavaScript
angular.module('portainer.app').component('endpointList', {
|
|
templateUrl: './endpointList.html',
|
|
controller: 'EndpointListController',
|
|
bindings: {
|
|
titleText: '@',
|
|
titleIcon: '@',
|
|
tags: '<',
|
|
tableKey: '@',
|
|
dashboardAction: '<',
|
|
snapshotAction: '<',
|
|
showSnapshotAction: '<',
|
|
editAction: '<',
|
|
isAdmin: '<',
|
|
retrievePage: '<',
|
|
endpointInitTime: '<',
|
|
},
|
|
});
|