From 3c6fdd15af1e5916cc81309f9de7849134d2e6a6 Mon Sep 17 00:00:00 2001 From: Martin Gross Date: Fri, 24 Apr 2020 09:14:39 +0200 Subject: [PATCH] =?UTF-8?q?Expose=20apple-developer-merchantid-domain-asso?= =?UTF-8?q?ciation=20on=20event=5Fp=E2=80=A6=20(#1661)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pretix/plugins/stripe/urls.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/pretix/plugins/stripe/urls.py b/src/pretix/plugins/stripe/urls.py index e0c3475758..82af46c182 100644 --- a/src/pretix/plugins/stripe/urls.py +++ b/src/pretix/plugins/stripe/urls.py @@ -14,12 +14,16 @@ event_patterns = [ url(r'^redirect/$', redirect_view, name='redirect'), url(r'^return/(?P[^/]+)/(?P[^/]+)/(?P[0-9]+)/$', ReturnView.as_view(), name='return'), url(r'^sca/(?P[^/]+)/(?P[^/]+)/(?P[0-9]+)/$', ScaView.as_view(), name='sca'), - url(r'^sca/(?P[^/]+)/(?P[^/]+)/(?P[0-9]+)/return/$', ScaReturnView.as_view(), name='sca.return'), + url(r'^sca/(?P[^/]+)/(?P[^/]+)/(?P[0-9]+)/return/$', + ScaReturnView.as_view(), name='sca.return'), ])), + url(r'^.well-known/apple-developer-merchantid-domain-association$', + applepay_association, name='applepay.association'), ] organizer_patterns = [ - url(r'^.well-known/apple-developer-merchantid-domain-association$', applepay_association, name='applepay.association'), + url(r'^.well-known/apple-developer-merchantid-domain-association$', + applepay_association, name='applepay.association'), ] urlpatterns = [ @@ -29,5 +33,6 @@ urlpatterns = [ OrganizerSettingsFormView.as_view(), name='settings.connect'), url(r'^_stripe/webhook/$', webhook, name='webhook'), url(r'^_stripe/oauth_return/$', oauth_return, name='oauth.return'), - url(r'^.well-known/apple-developer-merchantid-domain-association$', applepay_association, name='applepay.association'), + url(r'^.well-known/apple-developer-merchantid-domain-association$', + applepay_association, name='applepay.association'), ]