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:
parent
0d5b97455a
commit
c0d14715fb
15 changed files with 190 additions and 82 deletions
12
src/apps/dashboard/routes/_asyncRoutes.ts
Normal file
12
src/apps/dashboard/routes/_asyncRoutes.ts
Normal 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' }
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue