From b727a07476ea4c489368e4ec4b51ba5f0a6e1091 Mon Sep 17 00:00:00 2001 From: Lars Kusch Date: Tue, 5 Oct 2021 16:34:19 +0200 Subject: [PATCH] Added authorisation --- app/PaymentDrivers/Stripe/SEPA.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/PaymentDrivers/Stripe/SEPA.php b/app/PaymentDrivers/Stripe/SEPA.php index dd373571f968..f2525f938b15 100644 --- a/app/PaymentDrivers/Stripe/SEPA.php +++ b/app/PaymentDrivers/Stripe/SEPA.php @@ -26,7 +26,11 @@ class SEPA implements MethodInterface { $this->stripe = $stripe; } - public function authorizeView(array $data) { } + + public function authorizeView($data) + { + return render('gateways.stripe.sofort.authorize', $data); + } public function authorizeResponse(Request $request) { }