]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/account/account-routing.module.ts
Fix lint
[github/Chocobozzz/PeerTube.git] / client / src / app / account / account-routing.module.ts
1 import { NgModule } from '@angular/core'
2 import { RouterModule, Routes } from '@angular/router'
3
4 import { MetaGuard } from '@ngx-meta/core'
5
6 import { LoginGuard } from '../core'
7 import { AccountComponent } from './account.component'
8 import { AccountSettingsComponent } from './account-settings/account-settings.component'
9 import { AccountVideosComponent } from './account-videos/account-videos.component'
10
11 const accountRoutes: Routes = [
12 {
13 path: 'account',
14 component: AccountComponent,
15 canActivateChild: [ MetaGuard, LoginGuard ],
16 children: [
17 {
18 path: 'settings',
19 component: AccountSettingsComponent,
20 data: {
21 meta: {
22 title: 'Account settings'
23 }
24 }
25 },
26 {
27 path: 'videos',
28 component: AccountVideosComponent,
29 data: {
30 meta: {
31 title: 'Account videos'
32 }
33 }
34 }
35 ]
36 }
37 ]
38
39 @NgModule({
40 imports: [ RouterModule.forChild(accountRoutes) ],
41 exports: [ RouterModule ]
42 })
43 export class AccountRoutingModule {}