Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue/130 routing issues fix #131

Merged
merged 6 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ including the SPARQL Qonsole

## 1.8.0 - 2024-08

- (Bogdan) Fixed a bug where the language selector was not working correctly when
the user was on the accessibility or privacy pages [GH-130](https://github.com/epimorphics/lr-landing/issues/130)
- (Jon) Implemented improved boilerplate metrics integration to offer analysis of
current application usage stats
- (Jon) Implemented the dynamic page title approach used in the other suite apps
Expand All @@ -21,8 +23,8 @@ including the SPARQL Qonsole
## 1.7.7 - 2024-08

- (Dan) Updates gemfile to use v1.9.5 lr_common_styles
- (Dan) Adds underlines to links in body text to meet WCAG 2.2 accessibiliy
requirments[GH-126](https://github.com/epimorphics/lr-landing/issues/126)
- (Dan) Adds underlines to links in body text to meet WCAG 2.2 accessibility requirements
[GH-126](https://github.com/epimorphics/lr-landing/issues/126)

## 1.7.6 - 2024-03-12

Expand Down
4 changes: 2 additions & 2 deletions config/environments/development.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
config.api_service_url = ENV.fetch('API_SERVICE_URL', 'http://localhost:8888')

# Use default paths for documentation.
config.accessibility_document_path = '/doc/accessibility'
config.privacy_document_path = '/doc/privacy'
config.accessibility_document_path = '/accessibility'
config.privacy_document_path = '/privacy'

# feature flag for showing the Welsh language switch affordance
config.welsh_language_enabled = true
Expand Down
4 changes: 2 additions & 2 deletions config/environments/test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
config.logger = JsonRailsLogger::Logger.new($stdout)

# Use default paths for documentation.
config.accessibility_document_path = '/doc/accessibility'
config.privacy_document_path = '/doc/privacy'
config.accessibility_document_path = '/accessibility'
config.privacy_document_path = '/privacy'

# feature flag for showing the Welsh language switch affordance
config.welsh_language_enabled = true
Expand Down
4 changes: 2 additions & 2 deletions config/routes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
get 'doc/ppd', to: 'doc#ppd', as: 'ppd_doc'
get 'doc/ukhpi-dsd', to: redirect('/app/ukhpi/doc/ukhpi-dsd', status: 302)
get 'doc/ukhpi-user-guide', to: redirect('/app/ukhpi/doc/ukhpi-user-guide', status: 302)
get 'doc/accessibility', to: 'doc#accessibility'
get 'doc/privacy', to: 'doc#privacy'
get 'accessibility', to: 'doc#accessibility'
get 'privacy', to: 'doc#privacy'
end