Skip to content
Snippets Groups Projects
Commit 27df00fb authored by Chris Pastl's avatar Chris Pastl
Browse files

fix: set schedule of PlayoutEntry nullable

parent f9428ec3
No related branches found
No related tags found
1 merge request!51fix: set schedule of PlayoutEntry nullable
Pipeline #8300 passed
...@@ -1301,7 +1301,7 @@ class NestedTimeslotSerializer(serializers.Serializer): ...@@ -1301,7 +1301,7 @@ class NestedTimeslotSerializer(serializers.Serializer):
class PlayoutEntrySerializer(serializers.Serializer): class PlayoutEntrySerializer(serializers.Serializer):
episode = serializers.SerializerMethodField() episode = serializers.SerializerMethodField()
schedule = serializers.SerializerMethodField() schedule = serializers.SerializerMethodField(allow_null=True)
show = serializers.SerializerMethodField() show = serializers.SerializerMethodField()
timeslot = NestedTimeslotSerializer() timeslot = NestedTimeslotSerializer()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment