diff --git a/billard/urls.py b/billard/urls.py index 8f83e18..16419fe 100644 --- a/billard/urls.py +++ b/billard/urls.py @@ -6,7 +6,7 @@ router = routers.DefaultRouter() router.register(r'clients', views.ClientViewSet) router.register(r'locations', views.LocationViewSet) router.register(r'tables', views.TableViewSet) -router.register(r'data', views.TmpLocationDataViewSet) +router.register(r'location_data', views.TmpLocationDataViewSet) urlpatterns = [ url(r'api/v1/', include(router.urls)),