Files
training-software/cms/urls.py
Paperclip CTO b087a63b56
Some checks failed
CI / Tests (Python 3.12) (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / OpenAPI Schema (push) Has been cancelled
feat(TRA-237): CMS content blocks, media upload pipeline, and course theme
- MediaAsset model with file metadata and AV scan status tracking
- ContentBlock model (richtext/image/video/embed/download) with ordered
  blocks per page and unique constraint on (page, order)
- CourseTheme one-to-one per course with primary/secondary color and logo
- validate_upload/save_upload helpers with extension and size enforcement
- scan_media_asset_task Celery stub (marks clean; replace with ClamAV)
- REST API: media upload, page content blocks CRUD, block patch/delete
- Admin registrations for all three models
- Factory-boy factories and pytest test suite for views, upload, and task

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-07 09:28:54 +02:00

12 lines
399 B
Python

from django.urls import path
from .views import ContentBlockDetailView, MediaUploadView, PageContentBlocksView
app_name = "cms"
urlpatterns = [
path("upload/", MediaUploadView.as_view(), name="upload"),
path("pages/<uuid:page_id>/blocks/", PageContentBlocksView.as_view(), name="page-blocks"),
path("blocks/<uuid:block_id>/", ContentBlockDetailView.as_view(), name="block-detail"),
]