aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/account/account.routes.ts
blob: c382a6deb40e300ecf96a53a9258b201d5c52f40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { AccountComponent } from './account.component';

export const AccountRoutes = [
  {
    path: 'account',
    component: AccountComponent,
    data: {
      meta: {
        titleSuffix: ' - My account'
      }
    }
  }
];