15 lines
374 B
JavaScript
15 lines
374 B
JavaScript
import angular from 'angular';
|
|
|
|
angular.module('portainer.app').component('stackDuplicationForm', {
|
|
templateUrl:
|
|
'app/portainer/components/stack-duplication-form/stack-duplication-form.html',
|
|
controller: 'StackDuplicationFormController',
|
|
bindings: {
|
|
onDuplicate: '&',
|
|
onMigrate: '&',
|
|
endpoints: '<',
|
|
groups: '<',
|
|
currentEndpointId: '<'
|
|
}
|
|
});
|