aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/videos-routing.module.ts
blob: 005e9def6548bf39e41c50935dc67f3c81e17d3c (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                       





                                                     
                              





                               


                                      
                                

           


                    


                                     
                                

           

        



                               





                                      





                                                   
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';

import { VideoAddComponent } from './video-add';
import { VideoListComponent } from './video-list';
import { VideosComponent } from './videos.component';
import { VideoWatchComponent } from './video-watch';

const videosRoutes: Routes = [
  {
    path: 'videos',
    component: VideosComponent,
    children: [
      {
        path: 'list',
        component: VideoListComponent,
        data: {
          meta: {
            title: 'Videos list'
          }
        }
      },
      {
        path: 'add',
        component: VideoAddComponent,
        data: {
          meta: {
            title: 'Add a video'
          }
        }
      },
      {
        path: ':id',
        redirectTo: 'watch/:id'
      },
      {
        path: 'watch/:id',
        component: VideoWatchComponent
      }
    ]
  }
];

@NgModule({
  imports: [ RouterModule.forChild(videosRoutes) ],
  exports: [ RouterModule ]
})
export class VideosRoutingModule {}