aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/videos.routes.ts
blob: 074f96596e1a81e5feeb806e98877fc244cecfee (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
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
      },
      {
        path: 'add',
        component: VideoAddComponent
      },
      {
        path: 'watch/:id',
        component: VideoWatchComponent
      }
    ]
  }
];