mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
66 lines
1.8 KiB
TypeScript
66 lines
1.8 KiB
TypeScript
import { LegacyRoute } from '../../../../components/router/LegacyRoute';
|
|
|
|
export const LEGACY_USER_ROUTES: LegacyRoute[] = [
|
|
{
|
|
path: 'details',
|
|
pageProps: {
|
|
controller: 'itemDetails/index',
|
|
view: 'itemDetails/index.html'
|
|
}
|
|
}, {
|
|
path: 'list.html',
|
|
pageProps: {
|
|
controller: 'list',
|
|
view: 'list.html'
|
|
}
|
|
}, {
|
|
path: 'mypreferencesmenu.html',
|
|
pageProps: {
|
|
controller: 'user/menu/index',
|
|
view: 'user/menu/index.html'
|
|
}
|
|
}, {
|
|
path: 'mypreferencescontrols.html',
|
|
pageProps: {
|
|
controller: 'user/controls/index',
|
|
view: 'user/controls/index.html'
|
|
}
|
|
}, {
|
|
path: 'mypreferenceshome.html',
|
|
pageProps: {
|
|
controller: 'user/home/index',
|
|
view: 'user/home/index.html'
|
|
}
|
|
}, {
|
|
path: 'mypreferencesplayback.html',
|
|
pageProps: {
|
|
controller: 'user/playback/index',
|
|
view: 'user/playback/index.html'
|
|
}
|
|
}, {
|
|
path: 'mypreferencessubtitles.html',
|
|
pageProps: {
|
|
controller: 'user/subtitles/index',
|
|
view: 'user/subtitles/index.html'
|
|
}
|
|
}, {
|
|
path: 'video',
|
|
pageProps: {
|
|
controller: 'playback/video/index',
|
|
view: 'playback/video/index.html',
|
|
type: 'video-osd',
|
|
isFullscreen: true,
|
|
isNowPlayingBarEnabled: false,
|
|
isThemeMediaSupported: true
|
|
}
|
|
}, {
|
|
path: 'queue',
|
|
pageProps: {
|
|
controller: 'playback/queue/index',
|
|
view: 'playback/queue/index.html',
|
|
isFullscreen: true,
|
|
isNowPlayingBarEnabled: false,
|
|
isThemeMediaSupported: true
|
|
}
|
|
}
|
|
];
|