mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-08 08:04:40 -04:00
Turning on token billing for PayFast
This commit is contained in:
parent
57852a6ca4
commit
2d06fa200c
@ -85,7 +85,7 @@ class Gateway extends StaticModel
|
|||||||
return [GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => true]];//eWay
|
return [GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => true]];//eWay
|
||||||
break;
|
break;
|
||||||
case 11:
|
case 11:
|
||||||
return [GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => false]];//Payfast
|
return [GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => true]];//Payfast
|
||||||
break;
|
break;
|
||||||
case 7:
|
case 7:
|
||||||
return [
|
return [
|
||||||
|
@ -28,7 +28,7 @@ class PayFastPaymentDriver extends BaseDriver
|
|||||||
|
|
||||||
public $refundable = false; //does this gateway support refunds?
|
public $refundable = false; //does this gateway support refunds?
|
||||||
|
|
||||||
public $token_billing = false; //does this gateway support token billing?
|
public $token_billing = true; //does this gateway support token billing?
|
||||||
|
|
||||||
public $can_authorise_credit_card = true; //does this gateway support authorizations?
|
public $can_authorise_credit_card = true; //does this gateway support authorizations?
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user