Skip to content

Commit

Permalink
refactor: Update description as optional in ContentLibraryCollectionU…
Browse files Browse the repository at this point in the history
…pdateSerializer
  • Loading branch information
ChrisChV committed Sep 10, 2024
1 parent 197733b commit 3c79543
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openedx/core/djangoapps/content_libraries/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ class ContentLibraryCollectionUpdateSerializer(serializers.Serializer):
"""

title = serializers.CharField()
description = serializers.CharField()
description = serializers.CharField(allow_blank=True)


class ContentLibraryCollectionCreateSerializer(ContentLibraryCollectionUpdateSerializer):
Expand Down

0 comments on commit 3c79543

Please sign in to comment.