mirror of
https://github.com/pretix/pretix.git
synced 2026-08-26 13:14:40 +00:00
Add payment provider PayPal
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
from django.conf.urls import url, include
|
||||
|
||||
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')
|
||||
])),
|
||||
]
|
||||
Reference in New Issue
Block a user