Fichiers des chants servis par X-Sendfile

This commit is contained in:
Claude Paroz 2025-10-19 19:57:42 +02:00
parent c37c52cb5d
commit 75f024feaf
2 changed files with 22 additions and 1 deletions

View file

@ -27,4 +27,6 @@ urlpatterns = [
path("membres/chants/<int:pk>/edit/", views.ChantEditView.as_view(), name="chant-edit"),
path("membres/chants/<int:pk>/delete/", views.ChantDeleteView.as_view(), name="chant-delete"),
path("membres/documents/", views.MediaView.as_view(prive=True), name="docs-membres"),
path("media/chants/<path:path>", views.MediaServeView.as_view(subdir="chants")),
]