Stage 1 migration and docs complete

This commit is contained in:
IGNY8 VPS (Salman)
2025-11-25 16:12:01 +00:00
parent f63ce92587
commit d19ea662ea
15 changed files with 764 additions and 2218 deletions

View File

@@ -5,7 +5,7 @@ from .views import (
ImagesViewSet,
ContentViewSet,
ContentTaxonomyViewSet,
ContentAttributeViewSet,
# ContentAttributeViewSet, # Disabled - serializer removed in Stage 1
)
router = DefaultRouter()
@@ -13,7 +13,7 @@ router.register(r'tasks', TasksViewSet, basename='task')
router.register(r'images', ImagesViewSet, basename='image')
router.register(r'content', ContentViewSet, basename='content')
router.register(r'taxonomies', ContentTaxonomyViewSet, basename='taxonomy')
router.register(r'attributes', ContentAttributeViewSet, basename='attribute')
# router.register(r'attributes', ContentAttributeViewSet, basename='attribute') # Disabled - serializer removed in Stage 1
urlpatterns = [
path('', include(router.urls)),