1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 07:49:41 +02:00
portainer/app/portainer/components/endpoint-list/endpoint-list.js
Anthony Lapenna ab77f149fa
feat(home): add the ability to refresh endpoint information (#2080)
* feat(home): add the ability to refresh endpoint information

* style(home): update refresh confirmation message
2018-07-25 21:52:17 +02:00

18 lines
397 B
JavaScript

angular.module('portainer.app').component('endpointList', {
templateUrl: 'app/portainer/components/endpoint-list/endpointList.html',
controller: function() {
var ctrl = this;
this.state = {
textFilter: ''
};
},
bindings: {
titleText: '@',
titleIcon: '@',
endpoints: '<',
dashboardAction: '<',
snapshotAction: '<',
showSnapshotAction: '<'
}
});