mirror of
https://github.com/portainer/portainer.git
synced 2025-07-25 00:09:40 +02:00
* feat(schedules): add the ability to list tasks from snapshots * feat(schedules): update schedules * refactor(schedules): fix linting issue
13 lines
391 B
JavaScript
13 lines
391 B
JavaScript
angular.module('portainer.docker').component('scheduleTasksDatatable', {
|
|
templateUrl: 'app/portainer/components/datatables/schedule-tasks-datatable/scheduleTasksDatatable.html',
|
|
controller: 'GenericDatatableController',
|
|
bindings: {
|
|
titleText: '@',
|
|
titleIcon: '@',
|
|
dataset: '<',
|
|
tableKey: '@',
|
|
orderBy: '@',
|
|
reverseOrder: '<',
|
|
goToContainerLogs: '<'
|
|
}
|
|
});
|