From b0383312c12c52e1c38f2a85531263f72650cde2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Tue, 11 Jun 2024 19:50:00 +0200 Subject: [PATCH] Add route for GoCardless OAuth connect confirmation --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index 8e5f31b39d7a..cc6df34bcc0a 100644 --- a/routes/web.php +++ b/routes/web.php @@ -51,5 +51,5 @@ Route::get('mollie/3ds_redirect/{company_key}/{company_gateway_id}/{hash}', [Mol Route::get('gocardless/ibp_redirect/{company_key}/{company_gateway_id}/{hash}', [GoCardlessController::class, 'ibpRedirect'])->middleware('domain_db')->name('gocardless.ibp_redirect'); Route::get('.well-known/apple-developer-merchantid-domain-association', [ApplePayDomainController::class, 'showAppleMerchantId']); -Route::get('gocardless/oauth/connect/{company_key}', [GoCardlessOAuthController::class, 'connect']); Route::get('gocardless/oauth/connect/confirm', [GoCardlessOAuthController::class, 'confirm'])->name('gocardless.oauth.confirm'); +Route::get('gocardless/oauth/connect/{company_key}', [GoCardlessOAuthController::class, 'connect']);