1
0
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:
Hillel Coren 2017-03-21 17:18:36 +02:00
parent 625a8f4d7c
commit c01681c42c

View File

@ -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) {