]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/account/account-routing.module.ts
e9b8f703145a406c4ff19b93956353abd0f14d30
[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 { AccountComponent } from './account.component'
5
6 const accountRoutes: Routes = [
7 {
8 path: 'account',
9 component: AccountComponent,
10 data: {
11 meta: {
12 title: 'My account'
13 }
14 }
15 }
16 ]
17
18 @NgModule({
19 imports: [ RouterModule.forChild(accountRoutes) ],
20 exports: [ RouterModule ]
21 })
22 export class AccountRoutingModule {}