-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.routes.ts
More file actions
77 lines (76 loc) · 2.32 KB
/
Copy pathapp.routes.ts
File metadata and controls
77 lines (76 loc) · 2.32 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import { Routes } from '@angular/router';
export const routes: Routes = [
{
path: '',
redirectTo: 'dashboard',
pathMatch: 'full'
},
{
path: 'dashboard',
loadComponent: () => import('./features/dashboard/dashboard').then(m => m.DashboardPageComponent)
},
{
path: 'catalog/products',
loadComponent: () => import('./features/catalog/products').then(m => m.ProductsPageComponent)
},
{
path: 'catalog/products/new',
loadComponent: () => import('./features/catalog/product-form').then(m => m.ProductFormComponent)
},
{
path: 'catalog/products/:id/edit',
loadComponent: () => import('./features/catalog/product-form').then(m => m.ProductFormComponent)
},
{
path: 'catalog/products/:id/view',
loadComponent: () => import('./features/catalog/product-form').then(m => m.ProductFormComponent)
},
{
path: 'catalog/products/:id/duplicate',
loadComponent: () => import('./features/catalog/product-form').then(m => m.ProductFormComponent)
},
{
path: 'catalog/products/:id',
loadComponent: () => import('./features/catalog/product-form').then(m => m.ProductFormComponent)
},
{
path: 'catalog/:sub',
loadComponent: () => import('./features/placeholder').then(m => m.PlaceholderPageComponent)
},
{
path: 'compatibility/:sub',
loadComponent: () => import('./features/placeholder').then(m => m.PlaceholderPageComponent)
},
{
path: 'vehicles/:sub',
loadComponent: () => import('./features/placeholder').then(m => m.PlaceholderPageComponent)
},
{
path: 'commercial/:sub',
loadComponent: () => import('./features/placeholder').then(m => m.PlaceholderPageComponent)
},
{
path: 'imports',
loadComponent: () => import('./features/placeholder').then(m => m.PlaceholderPageComponent)
},
{
path: 'reports',
loadComponent: () => import('./features/placeholder').then(m => m.PlaceholderPageComponent)
},
{
path: 'notifications',
loadComponent: () => import('./features/placeholder').then(m => m.PlaceholderPageComponent)
},
{
path: 'admin',
loadComponent: () => import('./features/placeholder').then(m => m.PlaceholderPageComponent)
},
{
path: 'help',
loadComponent: () => import('./features/placeholder').then(m => m.PlaceholderPageComponent)
},
{
path: '**',
redirectTo: 'dashboard'
}
];