diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-11-20 17:18:15 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-11-21 22:09:45 +0100 |
commit | 693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c (patch) | |
tree | d6004d282a55d995eecba78bae95173bd0f11767 /client/src/app/videos/videos.routes.ts | |
parent | 2c8d4697db4b5a2d645b7bfcaf91093a64597958 (diff) | |
download | PeerTube-693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c.tar.gz PeerTube-693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c.tar.zst PeerTube-693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c.zip |
Client: split in angular modules
Diffstat (limited to 'client/src/app/videos/videos.routes.ts')
-rw-r--r-- | client/src/app/videos/videos.routes.ts | 37 |
1 files changed, 0 insertions, 37 deletions
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 @@ | |||
1 | import { Routes } from '@angular/router'; | ||
2 | |||
3 | import { VideoAddComponent } from './video-add'; | ||
4 | import { VideoListComponent } from './video-list'; | ||
5 | import { VideosComponent } from './videos.component'; | ||
6 | import { VideoWatchComponent } from './video-watch'; | ||
7 | |||
8 | export const VideosRoutes: Routes = [ | ||
9 | { | ||
10 | path: 'videos', | ||
11 | component: VideosComponent, | ||
12 | children: [ | ||
13 | { | ||
14 | path: 'list', | ||
15 | component: VideoListComponent, | ||
16 | data: { | ||
17 | meta: { | ||
18 | titleSuffix: ' - Videos list' | ||
19 | } | ||
20 | } | ||
21 | }, | ||
22 | { | ||
23 | path: 'add', | ||
24 | component: VideoAddComponent, | ||
25 | data: { | ||
26 | meta: { | ||
27 | titleSuffix: ' - Add a video' | ||
28 | } | ||
29 | } | ||
30 | }, | ||
31 | { | ||
32 | path: 'watch/:id', | ||
33 | component: VideoWatchComponent | ||
34 | } | ||
35 | ] | ||
36 | } | ||
37 | ]; | ||