diff --git a/app/models/policies/international_relocation_payments.rb b/app/models/policies/international_relocation_payments.rb index d1e953e996..b435637a19 100644 --- a/app/models/policies/international_relocation_payments.rb +++ b/app/models/policies/international_relocation_payments.rb @@ -16,7 +16,9 @@ module InternationalRelocationPayments :invalid_bank_details, :ineligible_visa_or_entry_date, :ineligible_employment_terms, - :no_response_from_school + :no_response_from_school, + :suspected_fraud, + :information_mismatch_new_details_needed ] # NOTE RL: currently IRP only has a single reply to address, so notify diff --git a/config/locales/en.yml b/config/locales/en.yml index e0e044e510..4d37582095 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -784,6 +784,8 @@ en: ineligible_visa_or_entry_date: "Visa/entry date ineligible" ineligible_employment_terms: Ineligible employment terms no_response_from_school: No response from school + suspected_fraud: Suspected fraud + information_mismatch_new_details_needed: "Information mismatch - new details needed" eligibility_answers: nationality: "Nationality" passport_number: "Passport number" diff --git a/spec/mailers/claim_mailer_spec.rb b/spec/mailers/claim_mailer_spec.rb index d9a3626255..6fcf9c3b2c 100644 --- a/spec/mailers/claim_mailer_spec.rb +++ b/spec/mailers/claim_mailer_spec.rb @@ -225,7 +225,9 @@ class SomePolicy; end reason_invalid_bank_details: "no", reason_ineligible_visa_or_entry_date: "no", reason_ineligible_employment_terms: "no", - reason_no_response_from_school: "no" + reason_no_response_from_school: "no", + reason_suspected_fraud: "no", + reason_information_mismatch_new_details_needed: "no" } end