Skip to content

Commit

Permalink
Merge pull request #35 from xendit/TPI-9701/whmcs-remove-currency-val…
Browse files Browse the repository at this point in the history
…idation-for-my-th-vn-cards

Support currency VND/MYR/THB
  • Loading branch information
andykim authored Nov 1, 2023
2 parents 22434f1 + 28514ef commit dd6b0e8
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 dd6b0e8

Please sign in to comment.