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-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
|
|
|
];
|