Combined scene and movie components.

This commit is contained in:
DebaucheryLibrarian
2020-09-08 02:20:15 +02:00
parent 5bf5be94bb
commit 7c6243cf33
110 changed files with 67 additions and 124 deletions

View File

@@ -2,8 +2,7 @@ import Vue from 'vue';
import VueRouter from 'vue-router';
import Home from '../components/home/home.vue';
import Scene from '../components/releases/scene.vue';
import Movie from '../components/releases/movie.vue';
import Release from '../components/releases/release.vue';
import Entity from '../components/entities/entity.vue';
import Networks from '../components/networks/networks.vue';
import Actor from '../components/actors/actor.vue';
@@ -46,12 +45,12 @@ const routes = [
},
{
path: '/scene/:releaseId/:releaseSlug?',
component: Scene,
component: Release,
name: 'scene',
},
{
path: '/movie/:movieId/:movieSlug?',
component: Movie,
path: '/movie/:releaseId/:releaseSlug?',
component: Release,
name: 'movie',
},
{