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-routing.module.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-routing.module.ts')
-rw-r--r-- | client/src/app/videos/videos-routing.module.ts | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/client/src/app/videos/videos-routing.module.ts b/client/src/app/videos/videos-routing.module.ts new file mode 100644 index 000000000..766d29d22 --- /dev/null +++ b/client/src/app/videos/videos-routing.module.ts | |||
@@ -0,0 +1,44 @@ | |||
1 | import { NgModule } from '@angular/core'; | ||
2 | import { RouterModule, Routes } from '@angular/router'; | ||
3 | |||
4 | import { VideoAddComponent } from './video-add'; | ||
5 | import { VideoListComponent } from './video-list'; | ||
6 | import { VideosComponent } from './videos.component'; | ||
7 | import { VideoWatchComponent } from './video-watch'; | ||
8 | |||
9 | const videosRoutes: Routes = [ | ||
10 | { | ||
11 | path: 'videos', | ||
12 | component: VideosComponent, | ||
13 | children: [ | ||
14 | { | ||
15 | path: 'list', | ||
16 | component: VideoListComponent, | ||
17 | data: { | ||
18 | meta: { | ||
19 | titleSuffix: ' - Videos list' | ||
20 | } | ||
21 | } | ||
22 | }, | ||
23 | { | ||
24 | path: 'add', | ||
25 | component: VideoAddComponent, | ||
26 | data: { | ||
27 | meta: { | ||
28 | titleSuffix: ' - Add a video' | ||
29 | } | ||
30 | } | ||
31 | }, | ||
32 | { | ||
33 | path: 'watch/:id', | ||
34 | component: VideoWatchComponent | ||
35 | } | ||
36 | ] | ||
37 | } | ||
38 | ]; | ||
39 | |||
40 | @NgModule({ | ||
41 | imports: [ RouterModule.forChild(videosRoutes) ], | ||
42 | exports: [ RouterModule ] | ||
43 | }) | ||
44 | export class VideosRoutingModule {} | ||