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

View File

@@ -1,6 +1,11 @@
import { Feature } from '@msfa-enums/feature.enum';
export const ACTIVE_FEATURES_PROD: Feature[] = [Feature.ADMINISTRATION, Feature.MY_ACCOUNT, Feature.MY_ORGANIZATION];
export const ACTIVE_FEATURES_PROD: Feature[] = [
Feature.ADMINISTRATION,
Feature.MY_ACCOUNT,
Feature.MY_ORGANIZATION,
Feature.ACCESSIBILITY_REPORT,
];
export const ACTIVE_FEATURES_TEST: Feature[] = [
Feature.ADMINISTRATION,
@@ -9,4 +14,6 @@ export const ACTIVE_FEATURES_TEST: Feature[] = [
Feature.AVROP,
Feature.MY_ORGANIZATION,
Feature.RELEASES,
Feature.VERSION_INFO,
Feature.ACCESSIBILITY_REPORT,
];