From e44eb13c6188df4863dc6f960e35b2ab6e96c064 Mon Sep 17 00:00:00 2001 From: Sakil Mostak <73734619+Sakilmostak@users.noreply.github.com> Date: Mon, 7 Oct 2024 19:49:33 +0530 Subject: [PATCH] refactor(dynamic_fields): rename sepa in dynamic fields (#6234) --- crates/router/src/configs/defaults.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/crates/router/src/configs/defaults.rs b/crates/router/src/configs/defaults.rs index 3debb56722f4..67cf28e1a6ae 100644 --- a/crates/router/src/configs/defaults.rs +++ b/crates/router/src/configs/defaults.rs @@ -11515,9 +11515,9 @@ impl Default for super::settings::RequiredFields { } ), ( - "payment_method_data.bank_debit.sepa.iban".to_string(), + "payment_method_data.bank_debit.sepa_bank_debit.iban".to_string(), RequiredFieldInfo { - required_field: "payment_method_data.bank_debit.sepa.iban".to_string(), + required_field: "payment_method_data.bank_debit.sepa_bank_debit.iban".to_string(), display_name: "iban".to_string(), field_type: enums::FieldType::UserIban, value: None, @@ -11558,9 +11558,9 @@ impl Default for super::settings::RequiredFields { } ), ( - "payment_method_data.bank_debit.sepa.iban".to_string(), + "payment_method_data.bank_debit.sepa_bank_debit.iban".to_string(), RequiredFieldInfo { - required_field: "payment_method_data.bank_debit.sepa.iban".to_string(), + required_field: "payment_method_data.bank_debit.sepa_bank_debit.iban".to_string(), display_name: "iban".to_string(), field_type: enums::FieldType::UserIban, value: None, @@ -11601,9 +11601,9 @@ impl Default for super::settings::RequiredFields { } ), ( - "payment_method_data.bank_debit.sepa.iban".to_string(), + "payment_method_data.bank_debit.sepa_bank_debit.iban".to_string(), RequiredFieldInfo { - required_field: "payment_method_data.bank_debit.sepa.iban".to_string(), + required_field: "payment_method_data.bank_debit.sepa_bank_debit.iban".to_string(), display_name: "iban".to_string(), field_type: enums::FieldType::UserIban, value: None,