mirror of
https://github.com/pretix/pretix.git
synced 2026-05-08 15:44:02 +00:00
Use native payment retrials for PayPal (fixes #33)
This commit is contained in:
@@ -1,11 +1,10 @@
|
||||
from django.conf.urls import include, url
|
||||
|
||||
from .views import abort, retry, success
|
||||
from .views import abort, success
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^(?:(?P<organizer>[^/]+)/)?(?P<event>[^/]+)/paypal/', include([
|
||||
url(r'^abort/$', abort, name='abort'),
|
||||
url(r'^return/$', success, name='return'),
|
||||
url(r'^retry/(?P<order>[^/]+)/', retry, name='retry')
|
||||
])),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user