2025-01-23 16:09:49 -05:00
|
|
|
import type { AsyncRoute } from 'components/router/AsyncRoute';
|
|
|
|
import { AppType } from 'constants/appType';
|
2023-09-20 00:02:26 -04:00
|
|
|
|
|
|
|
export const ASYNC_ADMIN_ROUTES: AsyncRoute[] = [
|
2025-01-23 16:09:49 -05:00
|
|
|
{ path: 'activity', type: AppType.Dashboard },
|
|
|
|
{ path: 'branding', type: AppType.Dashboard },
|
2024-08-30 10:10:58 -04:00
|
|
|
{ path: 'devices2', page: 'devices', type: AppType.Dashboard },
|
2025-01-23 16:09:49 -05:00
|
|
|
{ path: 'keys', type: AppType.Dashboard },
|
|
|
|
{ path: 'logs', type: AppType.Dashboard },
|
|
|
|
{ path: 'playback/trickplay', type: AppType.Dashboard },
|
|
|
|
{ path: 'plugins/:pluginId', page: 'plugins/plugin', type: AppType.Dashboard },
|
|
|
|
{ path: 'users', type: AppType.Dashboard },
|
|
|
|
{ path: 'users/access', type: AppType.Dashboard },
|
|
|
|
{ path: 'users/add', type: AppType.Dashboard },
|
|
|
|
{ path: 'users/parentalcontrol', type: AppType.Dashboard },
|
|
|
|
{ path: 'users/password', type: AppType.Dashboard },
|
|
|
|
{ path: 'users/profile', type: AppType.Dashboard }
|
2023-09-20 00:02:26 -04:00
|
|
|
];
|