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/legacyRoutes/user.ts

57 lines
1.5 KiB
TypeScript
Raw Normal View History

2023-04-27 17:04:33 -04:00
import { LegacyRoute } from '../../../../components/router/LegacyRoute';
2023-04-13 00:47:34 +03:00
export const LEGACY_USER_ROUTES: LegacyRoute[] = [
{
path: 'details',
pageProps: {
controller: 'itemDetails/index',
view: 'itemDetails/index.html'
}
}, {
2025-03-17 15:39:21 -04:00
path: 'list',
2023-04-13 00:47:34 +03:00
pageProps: {
controller: 'list',
view: 'list.html'
}
2023-04-28 15:38:51 +12:00
}, {
path: 'lyrics',
pageProps: {
controller: 'lyrics',
view: 'lyrics.html'
}
2023-04-13 00:47:34 +03:00
}, {
2025-03-17 15:39:21 -04:00
path: 'mypreferencescontrols',
2023-04-13 00:47:34 +03:00
pageProps: {
controller: 'user/controls/index',
view: 'user/controls/index.html'
}
}, {
2025-03-17 15:39:21 -04:00
path: 'mypreferenceshome',
2023-04-13 00:47:34 +03:00
pageProps: {
controller: 'user/home/index',
view: 'user/home/index.html'
}
}, {
2025-03-17 15:39:21 -04:00
path: 'mypreferencesplayback',
2023-04-13 00:47:34 +03:00
pageProps: {
controller: 'user/playback/index',
view: 'user/playback/index.html'
}
}, {
2025-03-17 15:39:21 -04:00
path: 'mypreferencessubtitles',
2023-04-13 00:47:34 +03:00
pageProps: {
controller: 'user/subtitles/index',
view: 'user/subtitles/index.html'
}
}, {
path: 'queue',
pageProps: {
controller: 'playback/queue/index',
view: 'playback/queue/index.html',
isFullscreen: true,
isNowPlayingBarEnabled: false,
isThemeMediaSupported: true
}
}
];