aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/videos.routes.ts
blob: 074f96596e1a81e5feeb806e98877fc244cecfee (plain) (tree)
1
2
3
4
5
6
7
8
                                         





                                                     
                                     


















                                      
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
      }
    ]
  }
];