From e4c9c7802f03ff8d4947dd746a8296dbce9dd368 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B4mulo=20Penido?= Date: Fri, 26 Sep 2025 13:25:26 -0300 Subject: [PATCH] fix: add default to `target_collection_slug` --- cms/djangoapps/modulestore_migrator/rest_api/v1/serializers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cms/djangoapps/modulestore_migrator/rest_api/v1/serializers.py b/cms/djangoapps/modulestore_migrator/rest_api/v1/serializers.py index beb72729cdca..df981e896176 100644 --- a/cms/djangoapps/modulestore_migrator/rest_api/v1/serializers.py +++ b/cms/djangoapps/modulestore_migrator/rest_api/v1/serializers.py @@ -46,6 +46,7 @@ class ModulestoreMigrationSerializer(serializers.ModelSerializer): help_text="The target collection slug within the library to import into. Optional.", required=False, allow_blank=True, + default=None, ) forward_source_to_target = serializers.BooleanField( help_text="Forward references of this block source over to the target of this block migration.",