mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
add rotessa gateway payment methods
This commit is contained in:
parent
3db5c34a38
commit
cf45e647c3
@ -105,6 +105,8 @@ class Gateway extends StaticModel
|
|||||||
$link = 'https://www.forte.net/';
|
$link = 'https://www.forte.net/';
|
||||||
} elseif ($this->id == 62) {
|
} elseif ($this->id == 62) {
|
||||||
$link = 'https://docs.btcpayserver.org';
|
$link = 'https://docs.btcpayserver.org';
|
||||||
|
} elseif ($this->id == 4002) {
|
||||||
|
$link = 'https://rotessa.com';
|
||||||
}
|
}
|
||||||
|
|
||||||
return $link;
|
return $link;
|
||||||
@ -224,6 +226,15 @@ class Gateway extends StaticModel
|
|||||||
return [
|
return [
|
||||||
GatewayType::CRYPTO => ['refund' => true, 'token_billing' => false, 'webhooks' => ['confirmed', 'paid_out', 'failed', 'fulfilled']],
|
GatewayType::CRYPTO => ['refund' => true, 'token_billing' => false, 'webhooks' => ['confirmed', 'paid_out', 'failed', 'fulfilled']],
|
||||||
]; //BTCPay
|
]; //BTCPay
|
||||||
|
case 4002:
|
||||||
|
return [
|
||||||
|
GatewayType::BANK_TRANSFER => [
|
||||||
|
'refund' => false,
|
||||||
|
'token_billing' => true,
|
||||||
|
'webhooks' => [],
|
||||||
|
],
|
||||||
|
GatewayType::ACSS => ['refund' => false, 'token_billing' => true, 'webhooks' => []]
|
||||||
|
]; // Rotessa
|
||||||
default:
|
default:
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user