aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/users/users.routes.ts
blob: 21fb192e00ff829ddc14d1d703773ad13ddce9c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { Routes } from '@angular/router';

import { UsersComponent } from './users.component';
import { UserAddComponent } from './user-add';
import { UserListComponent } from './user-list';

export const UsersRoutes: Routes = [
  {
    path: 'users',
    component: UsersComponent,
    children: [
      {
        path: '',
        redirectTo: 'list',
        pathMatch: 'full'
      },
      {
        path: 'list',
        component: UserListComponent,
        data: {
          meta: {
            title: 'Users list'
          }
        }
      },
      {
        path: 'add',
        component: UserAddComponent,
        data: {
          meta: {
            title: 'Add a user'
          }
        }
      }
    ]
  }
];