Skip to content

Commit 84483cd

Browse files
committed
Slot이 nullable하도록 수정
1 parent af791b3 commit 84483cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyconkr/external_apis/pretalx/serializers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class PretalxSessionSerializer(serializers.Serializer):
4747
internal_notes = serializers.CharField(allow_null=True, allow_blank=True)
4848
content_locale = serializers.CharField()
4949

50-
slot = PretalxSlotSerializer()
50+
slot = PretalxSlotSerializer(allow_null=True)
5151
duration = serializers.IntegerField(allow_null=True)
5252
do_not_record = serializers.BooleanField()
5353
is_featured = serializers.BooleanField()

0 commit comments

Comments
 (0)