Use native payment retrials for PayPal (fixes #33)

This commit is contained in:
Raphael Michel
2016-03-10 15:58:14 +01:00
parent cbc8ea44cc
commit bc0c171921
4 changed files with 51 additions and 77 deletions

View File

@@ -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')
])),
]