Skip to content

Commit

Permalink
feat(#204) Added missing routing
Browse files Browse the repository at this point in the history
  • Loading branch information
AudreyLR committed Nov 22, 2018
1 parent c8759fc commit d574a55
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/app-routing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import {LoginComponent} from './user-access/login/login.component';
import {InspectionApprovalComponent} from './inspection-approval/inspection-approval.component';
import {StatisticsComponent} from './statistics/statistics.component';
import {ReportConfigurationComponent} from './report-configuration/report-configuration.component';
import {SelectTemplateComponent} from './report-configuration/select-template/select-template.component';
import {PermissionService} from './user-access/shared/services/permission.service';
import {ManagementSystemComponent} from './management-system/management-system.component';

Expand Down Expand Up @@ -65,7 +66,10 @@ const appRoutes: Routes = [{
}]
}, {
path: 'report-configuration',
component: ReportConfigurationComponent
component: SelectTemplateComponent,
}, {
path: 'report-edition',
component: ReportConfigurationComponent,
}, {
path: '**',
component: PageNotFoundComponent,
Expand Down

0 comments on commit d574a55

Please sign in to comment.