aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/account/account.routes.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/account/account.routes.ts')
-rw-r--r--client/src/app/account/account.routes.ts10
1 files changed, 9 insertions, 1 deletions
diff --git a/client/src/app/account/account.routes.ts b/client/src/app/account/account.routes.ts
index e348c6ebe..c382a6deb 100644
--- a/client/src/app/account/account.routes.ts
+++ b/client/src/app/account/account.routes.ts
@@ -1,5 +1,13 @@
1import { AccountComponent } from './account.component'; 1import { AccountComponent } from './account.component';
2 2
3export const AccountRoutes = [ 3export const AccountRoutes = [
4 { path: 'account', component: AccountComponent } 4 {
5 path: 'account',
6 component: AccountComponent,
7 data: {
8 meta: {
9 titleSuffix: ' - My account'
10 }
11 }
12 }
5]; 13];