"""Collection common urlpaths.""" from rest_framework.routers import SimpleRouter from collection.views import back as views app_name = 'collection' router = SimpleRouter() router.register(r'', views.CollectionBackOfficeViewSet) urlpatterns = router.urls