Storing directors.

This commit is contained in:
DebaucheryLibrarian
2021-03-07 00:01:02 +01:00
parent 9ae113ab92
commit 17e6f5a5da
17 changed files with 102 additions and 27 deletions

View File

@@ -67,6 +67,23 @@ const routes = [
component: Actor,
name: 'actorRange',
},
{
path: '/director/:actorId/:actorSlug',
name: 'director',
redirect: from => ({
name: 'directorRange',
params: {
...from.params,
range: 'latest',
pageNumber: 1,
},
}),
},
{
path: '/director/:actorId/:actorSlug',
component: Actor,
name: 'directorRange',
},
{
path: '/channel/:entitySlug',
redirect: from => ({