Skip to content

Commit

Permalink
Support currency VND/MYR/THB
Browse files Browse the repository at this point in the history
  • Loading branch information
andykim committed Oct 31, 2023
1 parent 22434f1 commit 28514ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/gateways/xendit.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
require __DIR__ . '/xendit/autoload.php';

// Module version
const XENDIT_PAYMENT_GATEWAY_VERSION = '1.2.1';
const XENDIT_PAYMENT_GATEWAY_VERSION = '1.2.2';

use WHMCS\Billing\Invoice;
use Xendit\Lib\ActionBase;
Expand Down
2 changes: 1 addition & 1 deletion modules/gateways/xendit/lib/ActionBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

class ActionBase
{
const ALLOW_CURRENCIES = ['IDR', 'PHP', 'USD'];
const ALLOW_CURRENCIES = ['IDR', 'PHP', 'USD', 'VND', 'MYR', 'THB'];
const WHMCS_MIN_VERSION_SUPPORT = 7.9;

protected $moduleDomain = 'xendit';
Expand Down

0 comments on commit 28514ef

Please sign in to comment.