blob: ab68fbe0cbdaee9fbbd378086fe9b25d9e867b1e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
import { Routes } from '@angular/router';
import { VideoAddComponent } from './video-add';
import { VideoListComponent } from './video-list';
import { VideosComponent } from './videos.component';
import { VideoWatchComponent } from './video-watch';
export const VideosRoutes: Routes = [
{
path: 'videos',
component: VideosComponent,
children: [
{
path: 'list',
component: VideoListComponent,
data: {
meta: {
titleSuffix: ' - Videos list'
}
}
},
{
path: 'add',
component: VideoAddComponent,
data: {
meta: {
titleSuffix: ' - Add a video'
}
}
},
{
path: 'watch/:id',
component: VideoWatchComponent
}
]
}
];
|