aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/videos.routes.ts
blob: ab68fbe0cbdaee9fbbd378086fe9b25d9e867b1e (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,
        data: {
          meta: {
            titleSuffix: ' - Videos list'
          }
        }
      },
      {
        path: 'add',
        component: VideoAddComponent,
        data: {
          meta: {
            titleSuffix: ' - Add a video'
          }
        }
      },
      {
        path: 'watch/:id',
        component: VideoWatchComponent
      }
    ]
  }
];