2023-05-01 16:50:41 -04:00
|
|
|
import { AsyncRoute, AsyncRouteType } from '../../../../components/router/AsyncRoute';
|
2023-04-13 00:47:34 +03:00
|
|
|
|
|
|
|
export const ASYNC_USER_ROUTES: AsyncRoute[] = [
|
2024-07-16 17:05:32 -04:00
|
|
|
{ path: 'home.html', page: 'home', type: AsyncRouteType.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' },
|
2023-10-26 02:05:38 +03:00
|
|
|
{ path: 'movies.html', page: 'movies', type: AsyncRouteType.Experimental },
|
2023-10-28 22:10:46 +03:00
|
|
|
{ path: 'tv.html', page: 'shows', type: AsyncRouteType.Experimental },
|
2024-01-12 21:08:06 +03:00
|
|
|
{ path: 'music.html', page: 'music', type: AsyncRouteType.Experimental },
|
2023-10-17 17:54:55 -07:00
|
|
|
{ path: 'livetv.html', page: 'livetv', type: AsyncRouteType.Experimental },
|
2024-05-29 03:32:53 +03:00
|
|
|
{ path: 'mypreferencesdisplay.html', page: 'user/display', type: AsyncRouteType.Experimental },
|
|
|
|
|
|
|
|
{ path: 'homevideos.html', page: 'homevideos', type: AsyncRouteType.Experimental }
|
2023-04-13 00:47:34 +03:00
|
|
|
];
|