gault-millau/apps/collection/urls/back.py
2019-12-16 14:03:44 +03:00

11 lines
258 B
Python

"""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