mirror of https://github.com/portainer/portainer
21 lines
475 B
JavaScript
21 lines
475 B
JavaScript
import angular from 'angular';
|
|
|
|
import { EdgeJobFormController } from './edgeJobFormController';
|
|
|
|
angular.module('portainer.edge').component('edgeJobForm', {
|
|
templateUrl: './edgeJobForm.html',
|
|
controller: EdgeJobFormController,
|
|
bindings: {
|
|
model: '=',
|
|
groups: '<',
|
|
tags: '<',
|
|
edgeGroups: '<',
|
|
addLabelAction: '<',
|
|
removeLabelAction: '<',
|
|
formAction: '<',
|
|
formActionLabel: '@',
|
|
actionInProgress: '<',
|
|
isEditorDirty: '=',
|
|
},
|
|
});
|