]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/videos-routing.module.ts
Client: split in angular modules
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos-routing.module.ts
CommitLineData
693b1aba
C
1import { NgModule } from '@angular/core';
2import { RouterModule, Routes } from '@angular/router';
0629423c
C
3
4import { VideoAddComponent } from './video-add';
5import { VideoListComponent } from './video-list';
6import { VideosComponent } from './videos.component';
7import { VideoWatchComponent } from './video-watch';
8
693b1aba 9const videosRoutes: Routes = [
0629423c
C
10 {
11 path: 'videos',
12 component: VideosComponent,
13 children: [
14 {
15 path: 'list',
b58c69a1
C
16 component: VideoListComponent,
17 data: {
18 meta: {
19 titleSuffix: ' - Videos list'
20 }
21 }
0629423c
C
22 },
23 {
24 path: 'add',
b58c69a1
C
25 component: VideoAddComponent,
26 data: {
27 meta: {
28 titleSuffix: ' - Add a video'
29 }
30 }
0629423c
C
31 },
32 {
33 path: 'watch/:id',
34 component: VideoWatchComponent
35 }
36 ]
37 }
38];
693b1aba
C
39
40@NgModule({
41 imports: [ RouterModule.forChild(videosRoutes) ],
42 exports: [ RouterModule ]
43})
44export class VideosRoutingModule {}