mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
Web-based check-in interface (#1985)
This commit is contained in:
8
src/pretix/plugins/webcheckin/urls.py
Normal file
8
src/pretix/plugins/webcheckin/urls.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from django.conf.urls import url
|
||||
|
||||
from .views import IndexView
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^control/event/(?P<organizer>[^/]+)/(?P<event>[^/]+)/webcheckin/$',
|
||||
IndexView.as_view(), name='index'),
|
||||
]
|
||||
Reference in New Issue
Block a user