mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
11 lines
317 B
Python
11 lines
317 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^control/event/(?P<organizer>[^/]+)/(?P<event>[^/]+)/pretixdroid/', views.ConfigView.as_view(),
|
|
name='config'),
|
|
url(r'^pretixdroid/api/(?P<organizer>[^/]+)/(?P<event>[^/]+)/', views.ApiView.as_view(),
|
|
name='api'),
|
|
]
|