diff options
Diffstat (limited to 'client/src/app/account/account-routing.module.ts')
-rw-r--r-- | client/src/app/account/account-routing.module.ts | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/client/src/app/account/account-routing.module.ts b/client/src/app/account/account-routing.module.ts new file mode 100644 index 000000000..8c1033cd2 --- /dev/null +++ b/client/src/app/account/account-routing.module.ts | |||
@@ -0,0 +1,22 @@ | |||
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 | titleSuffix: ' - My account' | ||
13 | } | ||
14 | } | ||
15 | } | ||
16 | ]; | ||
17 | |||
18 | @NgModule({ | ||
19 | imports: [ RouterModule.forChild(accountRoutes) ], | ||
20 | exports: [ RouterModule ] | ||
21 | }) | ||
22 | export class AccountRoutingModule {} | ||