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,7 +105,9 @@ class Gateway extends StaticModel
|
||||
$link = 'https://www.forte.net/';
|
||||
} elseif ($this->id == 62) {
|
||||
$link = 'https://docs.btcpayserver.org';
|
||||
}
|
||||
} elseif ($this->id == 4002) {
|
||||
$link = 'https://rotessa.com';
|
||||
}
|
||||
|
||||
return $link;
|
||||
}
|
||||
@ -224,6 +226,15 @@ class Gateway extends StaticModel
|
||||
return [
|
||||
GatewayType::CRYPTO => ['refund' => true, 'token_billing' => false, 'webhooks' => ['confirmed', 'paid_out', 'failed', 'fulfilled']],
|
||||
]; //BTCPay
|
||||
case 4002:
|
||||
return [
|
||||
GatewayType::BANK_TRANSFER => [
|
||||
'refund' => false,
|
||||
'token_billing' => true,
|
||||
'webhooks' => [],
|
||||
],
|
||||
GatewayType::ACSS => ['refund' => false, 'token_billing' => true, 'webhooks' => []]
|
||||
]; // Rotessa
|
||||
default:
|
||||
return [];
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user