1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/src/apps/dashboard/routes/_asyncRoutes.ts

17 lines
890 B
TypeScript
Raw Normal View History

import { AsyncRouteType, type AsyncRoute } from 'components/router/AsyncRoute';
2023-09-20 00:02:26 -04:00
export const ASYNC_ADMIN_ROUTES: AsyncRoute[] = [
{ 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 },
{ 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
];