From d4a5039efc60a3c5d9cd6092da1d5b42e332a94d Mon Sep 17 00:00:00 2001 From: Thomas Girod Date: Wed, 16 Nov 2022 23:08:13 +0100 Subject: [PATCH] correct wrong et_autoanswer url --- eboutic/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eboutic/urls.py b/eboutic/urls.py index f1d882e7..417a8b85 100644 --- a/eboutic/urls.py +++ b/eboutic/urls.py @@ -37,7 +37,7 @@ urlpatterns = [ path("pay/", pay_with_sith, name="pay_with_sith"), path("pay//", payment_result, name="payment_result"), path( - "et_autoanswer/", + "et_autoanswer", EtransactionAutoAnswer.as_view(), name="etransation_autoanswer", ),