feat(connector): [Itau Bank] Add payment and sync flow for Pix (#5342)

This commit is contained in:
Sakil Mostak
2024-07-22 16:07:22 +05:30
committed by GitHub
parent ca749b3259
commit 3fef96e727
41 changed files with 768 additions and 144 deletions

View File

@ -101,7 +101,7 @@ pub enum Connector {
Gpayments,
Helcim,
Iatapay,
// Itaubank, template code for future usage
Itaubank,
Klarna,
Mifinity,
Mollie,
@ -182,6 +182,7 @@ impl Connector {
| (Self::Trustpay, PaymentMethod::BankRedirect)
| (Self::Iatapay, _)
| (Self::Volt, _)
| (Self::Itaubank, _)
)
}
pub fn supports_file_storage_module(&self) -> bool {
@ -227,6 +228,7 @@ impl Connector {
| Self::Gpayments
| Self::Helcim
| Self::Iatapay
| Self::Itaubank
| Self::Klarna
| Self::Mifinity
| Self::Mollie