cma_search/server/apps/supervision/urls.py

9 lines
256 B
Python

from django.urls import path, include
from rest_framework import routers
from .views import ContentViewSet
router = routers.DefaultRouter()
router.register('content', ContentViewSet, basename="content")
urlpatterns = [
path('', include(router.urls))
]