mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
16 lines
757 B
TypeScript
16 lines
757 B
TypeScript
import { AsyncRoute } from 'components/router/AsyncRoute';
|
|
import { AppType } from 'constants/appType';
|
|
|
|
export const ASYNC_USER_ROUTES: AsyncRoute[] = [
|
|
{ path: 'home', type: AppType.Experimental },
|
|
{ path: 'homevideos', type: AppType.Experimental },
|
|
{ path: 'livetv', type: AppType.Experimental },
|
|
{ path: 'movies', type: AppType.Experimental },
|
|
{ path: 'music', type: AppType.Experimental },
|
|
{ path: 'mypreferencesdisplay', page: 'user/display', type: AppType.Experimental },
|
|
{ path: 'mypreferencesmenu', page: 'user/settings' },
|
|
{ path: 'quickconnect', page: 'quickConnect' },
|
|
{ path: 'search' },
|
|
{ path: 'tv', page: 'shows', type: AppType.Experimental },
|
|
{ path: 'userprofile', page: 'user/userprofile' }
|
|
];
|