Merge branch 'master' into webseed-merged
[oweals/peertube.git] / client / src / app / videos / videos.routes.ts
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       },
17       {
18         path: 'add',
19         component: VideoAddComponent
20       },
21       {
22         path: 'watch/:id',
23         component: VideoWatchComponent
24       }
25     ]
26   }
27 ];