Add trickplay functionality

This commit is contained in:
Nick
2024-02-11 20:34:30 -08:00
parent 675a59adc4
commit 8045b95d93
16 changed files with 335 additions and 8 deletions
@@ -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'
}
}
];
+2 -1
View File
@@ -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' }
];