Add search API for pretixdroid

This commit is contained in:
Raphael Michel
2016-09-25 14:49:30 +02:00
parent 48791b2f02
commit a8a9db19de
3 changed files with 47 additions and 1 deletions

View File

@@ -7,4 +7,6 @@ urlpatterns = [
name='config'),
url(r'^pretixdroid/api/(?P<organizer>[^/]+)/(?P<event>[^/]+)/redeem/', views.ApiRedeemView.as_view(),
name='api.redeem'),
url(r'^pretixdroid/api/(?P<organizer>[^/]+)/(?P<event>[^/]+)/search/', views.ApiSearchView.as_view(),
name='api.search'),
]