mirror of
https://github.com/portainer/portainer.git
synced 2025-07-18 21:09:40 +02:00
17 lines
628 B
TypeScript
17 lines
628 B
TypeScript
import angular from 'angular';
|
|
|
|
import { r2a } from '@/react-tools/react2angular';
|
|
import { withCurrentUser } from '@/react-tools/withCurrentUser';
|
|
import { withUIRouter } from '@/react-tools/withUIRouter';
|
|
import { withReactQuery } from '@/react-tools/withReactQuery';
|
|
import { ApplicationSettingsWidget } from '@/react/portainer/account/AccountView/ApplicationSettings';
|
|
|
|
export const accountModule = angular
|
|
.module('portainer.app.react.components.account', [])
|
|
.component(
|
|
'applicationSettingsWidget',
|
|
r2a(
|
|
withUIRouter(withReactQuery(withCurrentUser(ApplicationSettingsWidget))),
|
|
[]
|
|
)
|
|
).name;
|