mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
11 lines
578 B
TypeScript
11 lines
578 B
TypeScript
import { AsyncRoute } from '../../../../components/router/AsyncRoute';
|
|
|
|
export const ASYNC_ADMIN_ROUTES: AsyncRoute[] = [
|
|
{ path: 'notificationsettings.html', page: 'dashboard/notifications' },
|
|
{ path: 'usernew.html', page: 'user/usernew' },
|
|
{ path: 'userprofiles.html', page: 'user/userprofiles' },
|
|
{ path: 'useredit.html', page: 'user/useredit' },
|
|
{ path: 'userlibraryaccess.html', page: 'user/userlibraryaccess' },
|
|
{ path: 'userparentalcontrol.html', page: 'user/userparentalcontrol' },
|
|
{ path: 'userpassword.html', page: 'user/userpassword' }
|
|
];
|