mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 14:59:41 +02:00
* feat(kube): introduce custom templates refactor(customtemplates): use build option chore(deps): upgrade yaml parser feat(customtemplates): add and edit RC to kube templates fix(kube): show docker icon fix(custom-templates): save rc * fix(kube/templates): route to correct routes
18 lines
431 B
JavaScript
18 lines
431 B
JavaScript
import angular from 'angular';
|
|
|
|
angular.module('portainer.app').component('customTemplatesList', {
|
|
templateUrl: './customTemplatesList.html',
|
|
controller: 'CustomTemplatesListController',
|
|
bindings: {
|
|
titleText: '@',
|
|
titleIcon: '@',
|
|
templates: '<',
|
|
tableKey: '@',
|
|
onSelectClick: '<',
|
|
showSwarmStacks: '<',
|
|
onDeleteClick: '<',
|
|
isEditAllowed: '<',
|
|
createPath: '@',
|
|
editPath: '@',
|
|
},
|
|
});
|