forked from CGM_Public/pretix_original
Moved core plugins to the new URL API
This commit is contained in:
10
src/pretix/plugins/paypal/urls.py
Normal file
10
src/pretix/plugins/paypal/urls.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from django.conf.urls import include, url
|
||||
|
||||
from .views import abort, success
|
||||
|
||||
event_patterns = [
|
||||
url(r'^paypal/', include([
|
||||
url(r'^abort/$', abort, name='abort'),
|
||||
url(r'^return/$', success, name='return'),
|
||||
])),
|
||||
]
|
||||
Reference in New Issue
Block a user