From c879d49d84440826395808a880b950e14e84878a Mon Sep 17 00:00:00 2001 From: j Date: Tue, 11 Feb 2025 11:48:12 +0100 Subject: [PATCH] include clip details in edit --- pandora/edit/models.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pandora/edit/models.py b/pandora/edit/models.py index 5008ac459..94ad7a826 100644 --- a/pandora/edit/models.py +++ b/pandora/edit/models.py @@ -495,6 +495,9 @@ class Clip(models.Model): 'id': self.get_id(), 'index': self.index, 'volume': self.volume, + 'hue': self.hue, + 'saturation': self.saturation, + 'lightness': self.lightness, } if self.annotation: data['annotation'] = self.annotation.public_id