13 lines
327 B
Python
13 lines
327 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'collections', views.CollectionBackOfficeViewSet)
|
|
router.register(r'guides', views.GuideBackOfficeViewSet)
|
|
|
|
urlpatterns = router.urls
|