mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
12 lines
356 B
TypeScript
12 lines
356 B
TypeScript
import type { AsyncRoute } from 'components/router/AsyncRoute';
|
|
|
|
export const ASYNC_ADMIN_ROUTES: AsyncRoute[] = [
|
|
{ path: 'activity' },
|
|
{ path: 'notifications' },
|
|
{ path: 'users' },
|
|
{ path: 'users/access' },
|
|
{ path: 'users/add' },
|
|
{ path: 'users/parentalcontrol' },
|
|
{ path: 'users/password' },
|
|
{ path: 'users/profile' }
|
|
];
|