Skip to content

Commit

Permalink
refactor(connector): [NMI] Add Zip code as mandatory field for 3DS (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Sakilmostak authored Feb 15, 2024
1 parent a9e3d74 commit 1ddaee4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions crates/router/src/configs/defaults.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1499,6 +1499,15 @@ impl Default for super::settings::RequiredFields {
value: None,
}
),
(
"billing.address.zip".to_string(),
RequiredFieldInfo {
required_field: "billing.address.zip".to_string(),
display_name: "billing_zip".to_string(),
field_type: enums::FieldType::UserAddressPincode,
value: None,
}
),
]
),
common: HashMap::new(),
Expand Down Expand Up @@ -3548,6 +3557,15 @@ impl Default for super::settings::RequiredFields {
value: None,
}
),
(
"billing.address.zip".to_string(),
RequiredFieldInfo {
required_field: "billing.address.zip".to_string(),
display_name: "billing_zip".to_string(),
field_type: enums::FieldType::UserAddressPincode,
value: None,
}
),
]
),
common: HashMap::new(),
Expand Down

0 comments on commit 1ddaee4

Please sign in to comment.