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-01-23 16:09:49 -05:00
|
|
|
{ path: 'home.html', page: 'home', type: AppType.Experimental },
|
2023-09-15 10:31:48 -04:00
|
|
|
{ path: 'quickconnect', page: 'quickConnect' },
|
2023-04-13 00:47:34 +03:00
|
|
|
{ path: 'search.html', page: 'search' },
|
2023-05-02 01:42:23 -04:00
|
|
|
{ path: 'userprofile.html', page: 'user/userprofile' },
|
2025-01-23 16:09:49 -05:00
|
|
|
{ path: 'movies.html', page: 'movies', type: AppType.Experimental },
|
|
|
|
{ path: 'tv.html', page: 'shows', type: AppType.Experimental },
|
|
|
|
{ path: 'music.html', page: 'music', type: AppType.Experimental },
|
|
|
|
{ path: 'livetv.html', page: 'livetv', type: AppType.Experimental },
|
|
|
|
{ path: 'mypreferencesdisplay.html', page: 'user/display', type: AppType.Experimental },
|
|
|
|
{ path: 'homevideos.html', page: 'homevideos', type: AppType.Experimental }
|
2023-04-13 00:47:34 +03:00
|
|
|
];
|