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

13 lines
356 B
TypeScript
Raw Normal View History

2023-09-20 00:02:26 -04:00
import type { AsyncRoute } from 'components/router/AsyncRoute';
export const ASYNC_ADMIN_ROUTES: AsyncRoute[] = [
2023-09-20 16:25:11 -04:00
{ path: 'activity' },
{ path: 'notifications' },
{ path: 'users/new' },
{ path: 'users' },
{ path: 'users/profile' },
{ path: 'users/access' },
{ path: 'users/parentalcontrol' },
{ path: 'users/password' }
2023-09-20 00:02:26 -04:00
];