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' },
{ path: 'users/access' },
2023-10-03 13:15:52 -04:00
{ path: 'users/add' },
2023-09-20 16:25:11 -04:00
{ path: 'users/parentalcontrol' },
2023-10-03 13:15:52 -04:00
{ path: 'users/password' },
{ path: 'users/profile' }
2023-09-20 00:02:26 -04:00
];