mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 15:59:41 +02:00
11 lines
291 B
JavaScript
11 lines
291 B
JavaScript
import angular from 'angular';
|
|
import controller from './ingress-table.controller';
|
|
|
|
angular.module('portainer.kubernetes').component('kubernetesApplicationIngressTable', {
|
|
templateUrl: './ingress-table.html',
|
|
controller,
|
|
bindings: {
|
|
application: '<',
|
|
publicUrl: '<',
|
|
},
|
|
});
|