Ittay Stern | 6f900cc | 2018-08-29 17:01:32 +0300 | [diff] [blame] | 1 | import {Route} from '@angular/router'; |
2 | import {FlagsResolve} from "../shared/resolvers/flag/flag.resolver"; | ||||
3 | import {HealthStatusComponent} from "./health-status.component"; | ||||
4 | |||||
5 | export const HealthStatusRoutes: Route[] = [ | ||||
6 | { | ||||
7 | path: 'healthStatus', | ||||
8 | children: [ | ||||
9 | { | ||||
10 | path: '', | ||||
11 | component: HealthStatusComponent, | ||||
12 | resolve: { | ||||
13 | flags: FlagsResolve | ||||
14 | }, | ||||
15 | } | ||||
16 | ] | ||||
17 | } | ||||
18 | ]; | ||||
19 |