aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/videos')
-rw-r--r--client/src/app/videos/videos.routes.ts14
1 files changed, 12 insertions, 2 deletions
diff --git a/client/src/app/videos/videos.routes.ts b/client/src/app/videos/videos.routes.ts
index 074f96596..ab68fbe0c 100644
--- a/client/src/app/videos/videos.routes.ts
+++ b/client/src/app/videos/videos.routes.ts
@@ -12,11 +12,21 @@ export const VideosRoutes: Routes = [
12 children: [ 12 children: [
13 { 13 {
14 path: 'list', 14 path: 'list',
15 component: VideoListComponent 15 component: VideoListComponent,
16 data: {
17 meta: {
18 titleSuffix: ' - Videos list'
19 }
20 }
16 }, 21 },
17 { 22 {
18 path: 'add', 23 path: 'add',
19 component: VideoAddComponent 24 component: VideoAddComponent,
25 data: {
26 meta: {
27 titleSuffix: ' - Add a video'
28 }
29 }
20 }, 30 },
21 { 31 {
22 path: 'watch/:id', 32 path: 'watch/:id',