From d45c5a1e41390c15074325e52f8d70e4af3e2ccc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Thu, 11 Nov 2021 15:54:16 +0100 Subject: [PATCH] Add INSTANT_BANK_PAY to Gateway --- app/Models/Gateway.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Models/Gateway.php b/app/Models/Gateway.php index 1f60070b0acb..68b56001a84c 100644 --- a/app/Models/Gateway.php +++ b/app/Models/Gateway.php @@ -159,7 +159,8 @@ class Gateway extends StaticModel return [ GatewayType::BANK_TRANSFER => ['refund' => true, 'token_billing' => true, 'webhooks' => [' ']], // GoCardless GatewayType::DIRECT_DEBIT => ['refund' => false, 'token_billing' => true, 'webhooks' => [' ']], - GatewayType::SEPA => ['refund' => false, 'token_billing' => true, 'webhooks' => [' ']] + GatewayType::SEPA => ['refund' => false, 'token_billing' => true, 'webhooks' => [' ']], + GatewayType::INSTANT_BANK_PAY => ['refund' => false, 'token_billing' => true, 'webhooks' => [' ']], ]; break; case 58: