Added accessibility report page

This commit is contained in:
Erik Tiekstra
2021-09-10 14:02:30 +02:00
parent d7318eb5ae
commit ceee7028b7
15 changed files with 161 additions and 11 deletions
@@ -86,6 +86,14 @@ activeFeatures.forEach(feature => {
loadChildren: () => import('./pages/mock-login/mock-login.module').then(m => m.MockLoginModule),
});
break;
case Feature.ACCESSIBILITY_REPORT:
routes.push({
path: 'tillganglighet',
data: { title: 'Tillgänglighetsredogörelsen' },
loadChildren: () => import('./pages/accessibility/accessibility.module').then(m => m.AccessibilityModule),
canActivate: [AuthGuard],
});
break;
default:
break;
}