mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
Abandon PayFast adhoc token billing
This commit is contained in:
parent
2869ee2590
commit
4d521dfeac
@ -85,7 +85,7 @@ class Gateway extends StaticModel
|
||||
return [GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => true]];//eWay
|
||||
break;
|
||||
case 11:
|
||||
return [GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => true]];//Payfast
|
||||
return [GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => false]];//Payfast
|
||||
break;
|
||||
case 7:
|
||||
return [
|
||||
|
@ -28,7 +28,7 @@ class PayFastPaymentDriver extends BaseDriver
|
||||
|
||||
public $refundable = false; //does this gateway support refunds?
|
||||
|
||||
public $token_billing = true; //does this gateway support token billing?
|
||||
public $token_billing = false; //does this gateway support token billing?
|
||||
|
||||
public $can_authorise_credit_card = true; //does this gateway support authorizations?
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user