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/experimental/routes/asyncRoutes/user.ts

16 lines
796 B
TypeScript
Raw Normal View History

2025-01-23 16:09:49 -05:00
import { AsyncRoute } from 'components/router/AsyncRoute';
import { AppType } from 'constants/appType';
2023-04-13 00:47:34 +03:00
export const ASYNC_USER_ROUTES: AsyncRoute[] = [
2025-03-17 15:39:21 -04:00
{ path: 'home', page: 'home', type: AppType.Experimental },
2023-09-15 10:31:48 -04:00
{ path: 'quickconnect', page: 'quickConnect' },
2025-03-17 15:39:21 -04:00
{ path: 'search', page: 'search' },
{ path: 'userprofile', page: 'user/userprofile' },
{ path: 'movies', page: 'movies', type: AppType.Experimental },
{ path: 'tv', page: 'shows', type: AppType.Experimental },
{ path: 'music', page: 'music', type: AppType.Experimental },
{ path: 'livetv', page: 'livetv', type: AppType.Experimental },
{ path: 'mypreferencesdisplay', page: 'user/display', type: AppType.Experimental },
{ path: 'homevideos', page: 'homevideos', type: AppType.Experimental }
2023-04-13 00:47:34 +03:00
];