mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 12:12:48 +01:00
Check for active gateway
This commit is contained in:
parent
625a8f4d7c
commit
c01681c42c
@ -98,6 +98,10 @@ class OnlinePaymentController extends BaseController
|
||||
|
||||
$paymentDriver = $account->paymentDriver($invitation, $gatewayTypeId);
|
||||
|
||||
if (! $paymentDriver) {
|
||||
return redirect()->to('view/' . $invitation->invitation_key);
|
||||
}
|
||||
|
||||
try {
|
||||
return $paymentDriver->startPurchase(Input::all(), $sourceId);
|
||||
} catch (Exception $exception) {
|
||||
|
Loading…
Reference in New Issue
Block a user