1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Migrate dashboard to separate app

This commit is contained in:
Bill Thornton 2023-09-20 00:02:26 -04:00
parent 0d5b97455a
commit c0d14715fb
15 changed files with 190 additions and 82 deletions

View file

@ -0,0 +1,12 @@
import type { AsyncRoute } from 'components/router/AsyncRoute';
export const ASYNC_ADMIN_ROUTES: AsyncRoute[] = [
{ path: 'activity', page: 'dashboard/activity' },
{ path: 'notifications', page: 'dashboard/notifications' },
{ path: 'users/new', page: 'user/usernew' },
{ path: 'users', page: 'user/userprofiles' },
{ path: 'users/profile', page: 'user/useredit' },
{ path: 'users/access', page: 'user/userlibraryaccess' },
{ path: 'users/parentalcontrol', page: 'user/userparentalcontrol' },
{ path: 'users/password', page: 'user/userpassword' }
];