aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/video-watch-routing.module.ts
blob: d8fecb87da9c546fea5ee78488aa7e4b6a0fd178 (plain) (tree)
1
2
3
4
5
6
7
8

                                                      
                                          



                                                             
                                 



                                   

                                         

    
                     
                                   
                              







                                                       
import { NgModule } from '@angular/core'
import { RouterModule, Routes } from '@angular/router'
import { MetaGuard } from '@ngx-meta/core'
import { VideoWatchComponent } from './video-watch.component'

const videoWatchRoutes: Routes = [
  {
    path: 'playlist/:playlistId',
    component: VideoWatchComponent,
    canActivate: [ MetaGuard ]
  },
  {
    path: ':videoId/comments/:commentId',
    redirectTo: ':videoId'
  },
  {
    path: ':videoId',
    component: VideoWatchComponent,
    canActivate: [ MetaGuard ]
  }
]

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