Add trickplay functionality
This commit is contained in:
@@ -21,7 +21,8 @@ const LIBRARY_PATHS = [
|
||||
const PLAYBACK_PATHS = [
|
||||
'/dashboard/playback/transcoding',
|
||||
'/dashboard/playback/resume',
|
||||
'/dashboard/playback/streaming'
|
||||
'/dashboard/playback/streaming',
|
||||
'/dashboard/playback/trickplay'
|
||||
];
|
||||
|
||||
const ServerDrawerSection = () => {
|
||||
@@ -108,6 +109,9 @@ const ServerDrawerSection = () => {
|
||||
<ListItemLink to='/dashboard/playback/streaming' sx={{ pl: 4 }}>
|
||||
<ListItemText inset primary={globalize.translate('TabStreaming')} />
|
||||
</ListItemLink>
|
||||
<ListItemLink to='/dashboard/playback/trickplay' sx={{ pl: 4 }}>
|
||||
<ListItemText inset primary={globalize.translate('Trickplay')} />
|
||||
</ListItemLink>
|
||||
</List>
|
||||
</Collapse>
|
||||
</List>
|
||||
|
||||
@@ -163,5 +163,11 @@ export const LEGACY_ADMIN_ROUTES: LegacyRoute[] = [
|
||||
view: 'dashboard/streaming.html',
|
||||
controller: 'dashboard/streaming'
|
||||
}
|
||||
}, {
|
||||
path: 'playback/trickplay',
|
||||
pageProps: {
|
||||
view: 'dashboard/trickplay.html',
|
||||
controller: 'dashboard/trickplay'
|
||||
}
|
||||
}
|
||||
];
|
||||
|
||||
@@ -36,5 +36,6 @@ export const REDIRECTS: Redirect[] = [
|
||||
{ from: 'usernew.html', to: '/dashboard/users/add' },
|
||||
{ from: 'userparentalcontrol.html', to: '/dashboard/users/parentalcontrol' },
|
||||
{ from: 'userpassword.html', to: '/dashboard/users/password' },
|
||||
{ from: 'userprofiles.html', to: '/dashboard/users' }
|
||||
{ from: 'userprofiles.html', to: '/dashboard/users' },
|
||||
{ from: 'trickplayconfiguration.html', to: '/dashboard/playback/trickplay' }
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user