forked from CGM_Public/pretix_original
Add payment provider PayPal
This commit is contained in:
12
src/pretix/plugins/paypal/urls.py
Normal file
12
src/pretix/plugins/paypal/urls.py
Normal file
@@ -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