feat: update cms case api

This commit is contained in:
2026-06-12 17:19:23 +08:00
parent 2fab2be0a1
commit 8fecaeeb54
14 changed files with 1375 additions and 237 deletions
+11
View File
@@ -0,0 +1,11 @@
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)),
]