2023-10-06 20:09:19 -07:00
|
|
|
import { AsyncRouteType, type AsyncRoute } from 'components/router/AsyncRoute';
|
2023-09-20 00:02:26 -04:00
|
|
|
|
|
|
|
export const ASYNC_ADMIN_ROUTES: AsyncRoute[] = [
|
2023-10-06 20:09:19 -07:00
|
|
|
{ path: 'activity', type: AsyncRouteType.Dashboard },
|
2024-11-20 17:56:59 -05:00
|
|
|
{ path: 'branding', type: AsyncRouteType.Dashboard },
|
2025-01-23 22:58:24 +03:00
|
|
|
{ path: 'keys', type: AsyncRouteType.Dashboard },
|
2025-01-06 23:27:38 +03:00
|
|
|
{ path: 'logs', type: AsyncRouteType.Dashboard },
|
2024-03-17 04:08:53 -04:00
|
|
|
{ path: 'playback/trickplay', type: AsyncRouteType.Dashboard },
|
|
|
|
{ path: 'plugins/:pluginId', page: 'plugins/plugin', type: AsyncRouteType.Dashboard },
|
2023-10-06 20:09:19 -07:00
|
|
|
{ path: 'users', type: AsyncRouteType.Dashboard },
|
|
|
|
{ path: 'users/access', type: AsyncRouteType.Dashboard },
|
|
|
|
{ path: 'users/add', type: AsyncRouteType.Dashboard },
|
|
|
|
{ path: 'users/parentalcontrol', type: AsyncRouteType.Dashboard },
|
|
|
|
{ path: 'users/password', type: AsyncRouteType.Dashboard },
|
2024-03-17 04:08:53 -04:00
|
|
|
{ path: 'users/profile', type: AsyncRouteType.Dashboard }
|
2023-09-20 00:02:26 -04:00
|
|
|
];
|