]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+accounts/accounts-routing.module.ts
add theming via css custom properties
[github/Chocobozzz/PeerTube.git] / client / src / app / +accounts / accounts-routing.module.ts
... / ...
CommitLineData
1import { NgModule } from '@angular/core'
2import { RouterModule, Routes } from '@angular/router'
3import { MetaGuard } from '@ngx-meta/core'
4import { AccountsComponent } from './accounts.component'
5import { AccountVideosComponent } from './account-videos/account-videos.component'
6import { AccountAboutComponent } from './account-about/account-about.component'
7import { AccountVideoChannelsComponent } from './account-video-channels/account-video-channels.component'
8
9const accountsRoutes: Routes = [
10 {
11 path: ':accountId',
12 component: AccountsComponent,
13 canActivateChild: [ MetaGuard ],
14 children: [
15 {
16 path: '',
17 redirectTo: 'videos',
18 pathMatch: 'full'
19 },
20 {
21 path: 'videos',
22 component: AccountVideosComponent,
23 data: {
24 meta: {
25 title: 'Account videos'
26 }
27 }
28 },
29 {
30 path: 'video-channels',
31 component: AccountVideoChannelsComponent,
32 data: {
33 meta: {
34 title: 'Account video channels'
35 }
36 }
37 },
38 {
39 path: 'about',
40 component: AccountAboutComponent,
41 data: {
42 meta: {
43 title: 'About account'
44 }
45 }
46 }
47 ]
48 }
49]
50
51@NgModule({
52 imports: [ RouterModule.forChild(accountsRoutes) ],
53 exports: [ RouterModule ]
54})
55export class AccountsRoutingModule {}