72 lines
2.1 KiB
TypeScript
72 lines
2.1 KiB
TypeScript
|
import { NgModule } from '@angular/core'
|
||
|
import { RouterModule, Routes } from '@angular/router'
|
||
|
import { MetaGuard } from '@ngx-meta/core'
|
||
|
import { LoginGuard } from '../core'
|
||
|
import { MyAccountComponent } from './my-account.component'
|
||
|
import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component'
|
||
|
import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component'
|
||
|
import { MyAccountVideoChannelsComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channels.component'
|
||
|
import { MyAccountVideoChannelCreateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-create.component'
|
||
|
import { MyAccountVideoChannelUpdateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-update.component'
|
||
|
|
||
|
const myAccountRoutes: Routes = [
|
||
|
{
|
||
|
path: '',
|
||
|
component: MyAccountComponent,
|
||
|
canActivateChild: [ MetaGuard, LoginGuard ],
|
||
|
children: [
|
||
|
{
|
||
|
path: 'settings',
|
||
|
component: MyAccountSettingsComponent,
|
||
|
data: {
|
||
|
meta: {
|
||
|
title: 'Account settings'
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
path: 'video-channels',
|
||
|
component: MyAccountVideoChannelsComponent,
|
||
|
data: {
|
||
|
meta: {
|
||
|
title: 'Account video channels'
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
path: 'video-channels/create',
|
||
|
component: MyAccountVideoChannelCreateComponent,
|
||
|
data: {
|
||
|
meta: {
|
||
|
title: 'Create new video channel'
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
path: 'video-channels/update/:videoChannelId',
|
||
|
component: MyAccountVideoChannelUpdateComponent,
|
||
|
data: {
|
||
|
meta: {
|
||
|
title: 'Update video channel'
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
path: 'videos',
|
||
|
component: MyAccountVideosComponent,
|
||
|
data: {
|
||
|
meta: {
|
||
|
title: 'Account videos'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [ RouterModule.forChild(myAccountRoutes) ],
|
||
|
exports: [ RouterModule ]
|
||
|
})
|
||
|
export class MyAccountRoutingModule {}
|