diff --git a/db/schema.rb b/db/schema.rb index 7c222f80c..c428319fc 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -510,6 +510,7 @@ ActiveRecord::Schema[7.0].define(version: 2023_02_03_174815) do t.integer "old_persons_shared_ownership_value_check" t.integer "staircase_bought_value_check" t.integer "monthly_charges_value_check" + t.integer "saledate_check" t.index ["bulk_upload_id"], name: "index_sales_logs_on_bulk_upload_id" t.index ["created_by_id"], name: "index_sales_logs_on_created_by_id" t.index ["owning_organisation_id"], name: "index_sales_logs_on_owning_organisation_id" diff --git a/spec/requests/auth/confirmations_controller_spec.rb b/spec/requests/auth/confirmations_controller_spec.rb index fe27925b1..da39f7ff8 100644 --- a/spec/requests/auth/confirmations_controller_spec.rb +++ b/spec/requests/auth/confirmations_controller_spec.rb @@ -40,7 +40,7 @@ RSpec.describe Auth::ConfirmationsController, type: :request do end it "shows the error page" do - expect(page).to have_content("Your invitation link has expired") + expect(page).to have_content("For security reasons, your join link expired - get another one using the button below (valid for 3 hours).") end end