mirror of https://github.com/portainer/portainer
18 lines
450 B
JavaScript
18 lines
450 B
JavaScript
|
angular.module('portainer.integrations.storidge').component('storidgeDrivesDatatable', {
|
||
|
templateUrl: './storidgeDrivesDatatable.html',
|
||
|
controller: 'StoridgeDrivesDatatableController',
|
||
|
bindings: {
|
||
|
titleText: '@',
|
||
|
titleIcon: '@',
|
||
|
dataset: '<',
|
||
|
tableKey: '@',
|
||
|
orderBy: '@',
|
||
|
reverseOrder: '<',
|
||
|
removeAction: '<',
|
||
|
addAction: '<',
|
||
|
rescanAction: '<',
|
||
|
actionInProgress: '<',
|
||
|
additionInProgress: '<'
|
||
|
}
|
||
|
});
|