mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
PayPal: Fixed URL names and exception handling
This commit is contained in:
@@ -5,8 +5,8 @@ from .views import success, abort, retry
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^paypal/', include([
|
||||
url(r'^abort/$', abort, name='paypal.abort'),
|
||||
url(r'^return/$', success, name='paypal.return'),
|
||||
url(r'^retry/(?P<order>[^/]+)/', retry, name='paypal.retry')
|
||||
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