11 lines
258 B
Python
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
|