Skip to content

Commit

Permalink
Merge branch 'accessibility-settings-7.6' into accessibility-settings…
Browse files Browse the repository at this point in the history
…-7_x
  • Loading branch information
AAwouters committed Nov 6, 2024
2 parents 38c7988 + 0451559 commit 3c92acb
Show file tree
Hide file tree
Showing 23 changed files with 974 additions and 53 deletions.
5 changes: 5 additions & 0 deletions config/config.example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -410,3 +410,8 @@ liveRegion:
messageTimeOutDurationMs: 30000
# The visibility of the live region. Setting this to true is only useful for debugging purposes.
isVisible: false

# Configuration for storing accessibility settings, used by the AccessibilitySettingsService
accessibility:
# The duration in days after which the accessibility settings cookie expires
cookieExpirationDuration: 7
11 changes: 11 additions & 0 deletions src/app/accessibility/accessibility-settings.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { Config } from '../../config/config.interface';

/**
* Configuration interface used by the AccessibilitySettingsService
*/
export class AccessibilitySettingsConfig implements Config {
/**
* The duration in days after which the accessibility settings cookie expires
*/
cookieExpirationDuration: number;
}
Loading

0 comments on commit 3c92acb

Please sign in to comment.