119602: Add Accessibility Settings page

This commit is contained in:
Andreas Awouters
2024-10-22 14:34:35 +02:00
parent 8f708d0e28
commit b72ce73931
7 changed files with 119 additions and 3 deletions

View File

@@ -3,6 +3,7 @@ import { getInfoModulePath } from '../app-routing-paths';
export const END_USER_AGREEMENT_PATH = 'end-user-agreement';
export const PRIVACY_PATH = 'privacy';
export const FEEDBACK_PATH = 'feedback';
export const ACCESSIBILITY_SETTINGS_PATH = 'accessibility';
export function getEndUserAgreementPath() {
return getSubPath(END_USER_AGREEMENT_PATH);
@@ -16,6 +17,10 @@ export function getFeedbackPath() {
return getSubPath(FEEDBACK_PATH);
}
export function getAccessibilitySettingsPath() {
return getSubPath(ACCESSIBILITY_SETTINGS_PATH);
}
function getSubPath(path: string) {
return `${getInfoModulePath()}/${path}`;
}