12 lines
264 B
Python
12 lines
264 B
Python
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
from .cms import CmsCaseViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register(r'cases', CmsCaseViewSet, basename='cms-case')
|
|
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
]
|