import { NgModule } from '@angular/core' import { RouterModule, Routes } from '@angular/router' import { MetaGuard } from '@ngx-meta/core' import { AccountsComponent } from './accounts.component' import { AccountVideosComponent } from './account-videos/account-videos.component' import { AccountAboutComponent } from './account-about/account-about.component' import { AccountVideoChannelsComponent } from './account-video-channels/account-video-channels.component' const accountsRoutes: Routes = [ { path: 'peertube', redirectTo: '/videos/local' }, { path: ':accountId', component: AccountsComponent, canActivateChild: [ MetaGuard ], children: [ { path: '', redirectTo: 'video-channels', pathMatch: 'full' }, { path: 'videos', component: AccountVideosComponent, data: { meta: { title: 'Account videos' }, reuse: { enabled: true, key: 'account-videos-list' } } }, { path: 'video-channels', component: AccountVideoChannelsComponent, data: { meta: { title: 'Account video channels' } } }, { path: 'about', component: AccountAboutComponent, data: { meta: { title: 'About account' } } } ] } ] @NgModule({ imports: [ RouterModule.forChild(accountsRoutes) ], exports: [ RouterModule ] }) export class AccountsRoutingModule {}