]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/videos-routing.module.ts
Client: better confirm box for a beautiful world
[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 31 },
da19d94b
C
32 {
33 path: ':id',
34 redirectTo: 'watch/:id'
35 },
0629423c
C
36 {
37 path: 'watch/:id',
38 component: VideoWatchComponent
39 }
40 ]
41 }
42];
693b1aba
C
43
44@NgModule({
45 imports: [ RouterModule.forChild(videosRoutes) ],
46 exports: [ RouterModule ]
47})
48export class VideosRoutingModule {}