portainer/app/agent/components/files-datatable/files-datatable.js

23 lines
462 B
JavaScript
Raw Normal View History

angular.module('portainer.agent').component('filesDatatable', {
2018-10-10 08:06:23 +00:00
templateUrl: './files-datatable.html',
controller: 'GenericDatatableController',
bindings: {
titleText: '@',
titleIcon: '@',
dataset: '<',
tableKey: '@',
orderBy: '@',
reverseOrder: '<',
isRoot: '<',
goToParent: '&',
browse: '&',
rename: '&',
download: '&',
delete: '&',
isUploadAllowed: '<',
onFileSelectedForUpload: '<'
}
});