]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/videos.routes.ts
Client: add titles to all pages
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos.routes.ts
CommitLineData
ab32b0fc 1import { Routes } from '@angular/router';
0629423c
C
2
3import { VideoAddComponent } from './video-add';
4import { VideoListComponent } from './video-list';
5import { VideosComponent } from './videos.component';
6import { VideoWatchComponent } from './video-watch';
7
ab32b0fc 8export const VideosRoutes: Routes = [
0629423c
C
9 {
10 path: 'videos',
11 component: VideosComponent,
12 children: [
13 {
14 path: 'list',
b58c69a1
C
15 component: VideoListComponent,
16 data: {
17 meta: {
18 titleSuffix: ' - Videos list'
19 }
20 }
0629423c
C
21 },
22 {
23 path: 'add',
b58c69a1
C
24 component: VideoAddComponent,
25 data: {
26 meta: {
27 titleSuffix: ' - Add a video'
28 }
29 }
0629423c
C
30 },
31 {
32 path: 'watch/:id',
33 component: VideoWatchComponent
34 }
35 ]
36 }
37];