39 lines
1.6 KiB
Python
39 lines
1.6 KiB
Python
from django.conf.urls import include, url
|
|
|
|
from pretix.multidomain import event_url
|
|
|
|
from .views import (
|
|
OrganizerSettingsFormView, ReturnView, ScaReturnView, ScaView,
|
|
applepay_association, oauth_disconnect, oauth_return, redirect_view,
|
|
webhook,
|
|
)
|
|
|
|
event_patterns = [
|
|
url(r'^stripe2/', include([
|
|
event_url(r'^webhook/$', webhook, name='webhook', require_live=False),
|
|
url(r'^redirect/$', redirect_view, name='redirect'),
|
|
url(r'^return/(?P<order>[^/]+)/(?P<hash>[^/]+)/(?P<payment>[0-9]+)/$', ReturnView.as_view(), name='return'),
|
|
url(r'^sca/(?P<order>[^/]+)/(?P<hash>[^/]+)/(?P<payment>[0-9]+)/$', ScaView.as_view(), name='sca'),
|
|
url(r'^sca/(?P<order>[^/]+)/(?P<hash>[^/]+)/(?P<payment>[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'),
|
|
]
|
|
|
|
urlpatterns = [
|
|
url(r'^control/event/(?P<organizer>[^/]+)/(?P<event>[^/]+)/stripe2/disconnect/',
|
|
oauth_disconnect, name='oauth.disconnect'),
|
|
url(r'^control/organizer/(?P<organizer>[^/]+)/stripe2connect/',
|
|
OrganizerSettingsFormView.as_view(), name='settings.connect'),
|
|
url(r'^_stripe2/webhook/$', webhook, name='webhook'),
|
|
url(r'^_stripe2/oauth_return/$', oauth_return, name='oauth.return'),
|
|
url(r'^.well-known/apple-developer-merchantid-domain-association$',
|
|
applepay_association, name='applepay.association'),
|
|
]
|