mirror of https://github.com/portainer/portainer
12 lines
267 B
JavaScript
12 lines
267 B
JavaScript
|
import angular from 'angular';
|
||
|
import controller from './helm.controller';
|
||
|
import './helm.css';
|
||
|
|
||
|
angular.module('portainer.kubernetes').component('kubernetesHelmApplicationView', {
|
||
|
templateUrl: './helm.html',
|
||
|
controller,
|
||
|
bindings: {
|
||
|
endpoint: '<',
|
||
|
},
|
||
|
});
|