From 693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Sun, 20 Nov 2016 17:18:15 +0100 Subject: Client: split in angular modules --- client/src/app/videos/videos.routes.ts | 37 ---------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 client/src/app/videos/videos.routes.ts (limited to 'client/src/app/videos/videos.routes.ts') diff --git a/client/src/app/videos/videos.routes.ts b/client/src/app/videos/videos.routes.ts deleted file mode 100644 index ab68fbe0c..000000000 --- a/client/src/app/videos/videos.routes.ts +++ /dev/null @@ -1,37 +0,0 @@ -import { Routes } from '@angular/router'; - -import { VideoAddComponent } from './video-add'; -import { VideoListComponent } from './video-list'; -import { VideosComponent } from './videos.component'; -import { VideoWatchComponent } from './video-watch'; - -export const VideosRoutes: Routes = [ - { - path: 'videos', - component: VideosComponent, - children: [ - { - path: 'list', - component: VideoListComponent, - data: { - meta: { - titleSuffix: ' - Videos list' - } - } - }, - { - path: 'add', - component: VideoAddComponent, - data: { - meta: { - titleSuffix: ' - Add a video' - } - } - }, - { - path: 'watch/:id', - component: VideoWatchComponent - } - ] - } -]; -- cgit v1.2.3