1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00

Add Razorpay to Gateway class

This commit is contained in:
Benjamin Beganović 2021-10-07 16:24:40 +02:00
parent a08a003f89
commit 63ef35dcb9

View File

@ -137,6 +137,11 @@ class Gateway extends StaticModel
GatewayType::BANK_TRANSFER => ['refund' => true, 'token_billing' => true] // GoCardless
];
break;
case 58:
return [
GatewayType::HOSTED_PAGE => ['refund' => false, 'token_billing' => false] // Razorpay
];
break;
default:
return [];
break;