mirror of
https://github.com/portainer/portainer.git
synced 2025-07-18 21:09:40 +02:00
Co-authored-by: testA113 <aliharriss1995@gmail.com> Co-authored-by: Anthony Lapenna <anthony.lapenna@portainer.io> Co-authored-by: James Carppe <85850129+jamescarppe@users.noreply.github.com> Co-authored-by: Ali <83188384+testA113@users.noreply.github.com>
23 lines
750 B
TypeScript
23 lines
750 B
TypeScript
import angular from 'angular';
|
|
|
|
import { r2a } from '@/react-tools/react2angular';
|
|
import { withUIRouter } from '@/react-tools/withUIRouter';
|
|
import { withCurrentUser } from '@/react-tools/withCurrentUser';
|
|
import { ApplicationsDatatable } from '@/react/kubernetes/applications/ListView/ApplicationsDatatable/ApplicationsDatatable';
|
|
|
|
export const applicationsModule = angular
|
|
.module('portainer.kubernetes.react.components.applications', [])
|
|
|
|
.component(
|
|
'kubernetesApplicationsDatatable',
|
|
r2a(withUIRouter(withCurrentUser(ApplicationsDatatable)), [
|
|
'namespace',
|
|
'namespaces',
|
|
'onNamespaceChange',
|
|
'onRefresh',
|
|
'showSystem',
|
|
'onShowSystemChange',
|
|
'onRemove',
|
|
'hideStacks',
|
|
])
|
|
).name;
|