You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
375 B
Python
11 lines
375 B
Python
from pretix.api.urls import router, orga_router
|
|
from django.conf.urls import url
|
|
|
|
|
|
from .views import *
|
|
|
|
urlpatterns = [
|
|
url(r'^api/v1/organizers/(?P<organizer>[^/]+)/posdevices/(?P<device_id>[^/.]+)/closings/', ClosingsView.as_view(), name='api.closings'),
|
|
url(r'^api/v1/organizers/(?P<organizer>[^/]+)/pos/cashiers/', CashierView.as_view(), name='api.cashiers'),
|
|
]
|