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