mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 09:07:09 +08:00
feat(connector): [SANTANDER] Add Template Code (#8369)
Co-authored-by: Sayak Bhattacharya <sayak.b@Sayak-Bhattacharya-G092THXJ34.local>
This commit is contained in:
committed by
GitHub
parent
293d93f68b
commit
c8b35dacb8
@ -131,6 +131,7 @@ pub enum RoutableConnectors {
|
||||
Recurly,
|
||||
Redsys,
|
||||
Riskified,
|
||||
// Santander,
|
||||
Shift4,
|
||||
Signifyd,
|
||||
Square,
|
||||
@ -290,6 +291,7 @@ pub enum Connector {
|
||||
Razorpay,
|
||||
Recurly,
|
||||
Redsys,
|
||||
// Santander,
|
||||
Shift4,
|
||||
Square,
|
||||
Stax,
|
||||
@ -460,6 +462,7 @@ impl Connector {
|
||||
| Self::Rapyd
|
||||
| Self::Recurly
|
||||
| Self::Redsys
|
||||
// | Self::Santander
|
||||
| Self::Shift4
|
||||
| Self::Square
|
||||
| Self::Stax
|
||||
@ -620,6 +623,7 @@ impl From<RoutableConnectors> for Connector {
|
||||
RoutableConnectors::Recurly => Self::Recurly,
|
||||
RoutableConnectors::Redsys => Self::Redsys,
|
||||
RoutableConnectors::Riskified => Self::Riskified,
|
||||
// RoutableConnectors::Santander => Self::Santander,
|
||||
RoutableConnectors::Shift4 => Self::Shift4,
|
||||
RoutableConnectors::Signifyd => Self::Signifyd,
|
||||
RoutableConnectors::Square => Self::Square,
|
||||
@ -735,6 +739,7 @@ impl TryFrom<Connector> for RoutableConnectors {
|
||||
Connector::Rapyd => Ok(Self::Rapyd),
|
||||
Connector::Razorpay => Ok(Self::Razorpay),
|
||||
Connector::Riskified => Ok(Self::Riskified),
|
||||
// Connector::Santander => Ok(Self::Santander),
|
||||
Connector::Shift4 => Ok(Self::Shift4),
|
||||
Connector::Signifyd => Ok(Self::Signifyd),
|
||||
Connector::Square => Ok(Self::Square),
|
||||
|
||||
Reference in New Issue
Block a user