]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/account/account-routing.module.ts
4 lines per page instead of 3 for videos list
[github/Chocobozzz/PeerTube.git] / client / src / app / account / account-routing.module.ts
... / ...
CommitLineData
1import { NgModule } from '@angular/core'
2import { RouterModule, Routes } from '@angular/router'
3
4import { MetaGuard } from '@ngx-meta/core'
5
6import { LoginGuard } from '../core'
7import { AccountComponent } from './account.component'
8import { AccountSettingsComponent } from './account-settings/account-settings.component'
9import { AccountVideosComponent } from './account-videos/account-videos.component'
10
11const 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})
43export class AccountRoutingModule {}