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-28 10:05:36 -04:00
|
|
|
{ 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' },
|
2023-09-15 10:31:48 -04:00
|
|
|
{ path: 'quickconnect', page: 'quickConnect' },
|
2025-03-28 10:05:36 -04:00
|
|
|
{ path: 'search' },
|
2025-03-17 15:39:21 -04:00
|
|
|
{ path: 'tv', page: 'shows', type: AppType.Experimental },
|
2025-03-28 10:05:36 -04:00
|
|
|
{ path: 'userprofile', page: 'user/userprofile' }
|
2023-04-13 00:47:34 +03:00
|
|
|
];
|