Skip to content
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
1 change: 1 addition & 0 deletions app/views/layouts/base.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<link rel="apple-touch-icon" href="<%= vite_asset_path "#{govuk_assets_path}/images/govuk-icon-180.png"%>">
<%# This manifest file and the icons it references are currently being served from the `public` folder. %>
<%# TODO: update the build to either generate the manifest with references to fingerprinted assets, or automatically copy the manifest and its dependencies to `public`. %>
<%# https://trello.com/c/zXttaPrR/3450-update-frontend-build-to-handle-manifestjson-automatically %>
<link rel="manifest" href="/manifest.json">
<meta property="og:image" content="<%= vite_asset_path "#{govuk_assets_path}/images/govuk-opengraph-image.png" %>">

Expand Down
1 change: 1 addition & 0 deletions config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ class Application < Rails::Application
config.active_record.enumerate_columns_in_select_statements = true

# TODO: remove this when all sensitive data is encrypted
# https://trello.com/c/MXv9NJuX/3459-stop-supporting-unencrypted-data-in-forms-runner
# See https://guides.rubyonrails.org/active_record_encryption.html#support-for-unencrypted-data
config.active_record.encryption.support_unencrypted_data = true

Expand Down
3 changes: 2 additions & 1 deletion spec/requests/forms/step_controller_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -871,7 +871,8 @@
end
end

# TODO: Need to add test to check how changing an existing routing answer value would work. Better off as a feature spec which we dont have.
# TODO: Add feature test to check how changing an existing routing answer value would work.
# https://trello.com/c/ioopdSWO/3460-add-a-test-for-changing-an-existing-answer-with-routing
end

context "when page is repeatable" do
Expand Down
Loading