(backend) enable retrieve viewset on recording model

Add Django built-in mixins to recording viewset to support individual record
retrieval. Enables frontend to access single recording details needed for
the upcoming download page implementation.
This commit is contained in:
lebaudantoine
2025-04-11 16:24:54 +02:00
committed by aleb_the_flash
parent 20aceb1932
commit dc06b55693
3 changed files with 175 additions and 0 deletions

View File

@@ -544,6 +544,7 @@ class ResourceAccessViewSet(
class RecordingViewSet(
mixins.DestroyModelMixin,
mixins.ListModelMixin,
mixins.RetrieveModelMixin,
viewsets.GenericViewSet,
):
"""