-
Notifications
You must be signed in to change notification settings - Fork 4.2k
feat(connector): Added ThreeDs server integration template pr #7424
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,6 +156,7 @@ pub struct ConnectorTomlConfig { | |
#[serde_with::skip_serializing_none] | ||
#[derive(Debug, Deserialize, serde::Serialize, Clone)] | ||
pub struct ConnectorConfig { | ||
pub juspaythreedsserver: Option<ConnectorTomlConfig>, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can you put it in the ascending order of the names? Also, is this a single word or is it? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ascending order fix i will take this while completing the integration with transformers and types |
||
pub aci: Option<ConnectorTomlConfig>, | ||
pub adyen: Option<ConnectorTomlConfig>, | ||
#[cfg(feature = "payouts")] | ||
|
@@ -304,6 +305,7 @@ impl ConnectorConfig { | |
AuthenticationConnectors::UnifiedAuthenticationService => { | ||
Ok(connector_data.unified_authentication_service) | ||
} | ||
AuthenticationConnectors::Juspaythreedsserver => Ok(connector_data.juspaythreedsserver), | ||
} | ||
} | ||
|
||
|
@@ -371,6 +373,7 @@ impl ConnectorConfig { | |
Connector::Helcim => Ok(connector_data.helcim), | ||
Connector::Inespay => Ok(connector_data.inespay), | ||
Connector::Jpmorgan => Ok(connector_data.jpmorgan), | ||
Connector::Juspaythreedsserver => Ok(connector_data.juspaythreedsserver), | ||
Connector::Klarna => Ok(connector_data.klarna), | ||
Connector::Mifinity => Ok(connector_data.mifinity), | ||
Connector::Mollie => Ok(connector_data.mollie), | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: consistant formatting