Fix GooglePay and ApplePay onboarding links.

This commit is contained in:
Pedro Silva 2023-10-20 11:46:58 +01:00
parent b4d07e7025
commit 2154649a7b
No known key found for this signature in database
GPG key ID: E2EE20C0669D24B3
2 changed files with 0 additions and 30 deletions

View file

@ -178,21 +178,6 @@ class ApplePayButton implements ButtonInterface {
$data['products'][0] = 'PAYMENT_METHODS';
}
$data['capabilities'][] = 'APPLE_PAY';
$data['operations'][] = array(
'operation' => 'API_INTEGRATION',
'api_integration_preference' => array(
'rest_api_integration' => array(
'integration_method' => 'PAYPAL',
'integration_type' => 'THIRD_PARTY',
'third_party_details' => array(
'features' => array(
'PAYMENT',
'REFUND',
),
),
),
),
);
return $data;
}

View file

@ -204,21 +204,6 @@ class Button implements ButtonInterface {
}
$data['capabilities'][] = 'GOOGLE_PAY';
$data['operations'][] = array(
'operation' => 'API_INTEGRATION',
'api_integration_preference' => array(
'rest_api_integration' => array(
'integration_method' => 'PAYPAL',
'integration_type' => 'THIRD_PARTY',
'third_party_details' => array(
'features' => array(
'PAYMENT',
'REFUND',
),
),
),
),
);
return $data;
}