mirror of
https://github.com/pretix/pretix.git
synced 2026-05-09 15:54:03 +00:00
Add 3DS support to Stripe plugin
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
from django.conf.urls import include, url
|
||||
|
||||
from .views import refund, webhook
|
||||
from .views import ReturnView, refund, webhook
|
||||
|
||||
event_patterns = [
|
||||
url(r'^stripe/', include([
|
||||
url(r'^webhook/$', webhook, name='webhook'),
|
||||
url(r'^return/(?P<order>[^/]+)/(?P<hash>[^/]+)/$', ReturnView.as_view(), name='return'),
|
||||
])),
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user