15 lines
354 B
Python
15 lines
354 B
Python
"""
|
|
Progress Tab Serializers
|
|
"""
|
|
|
|
from rest_framework import serializers
|
|
from lms.djangoapps.course_home_api.outline.v1.serializers import CourseBlockSerializer
|
|
|
|
|
|
class ProgressTabSerializer(serializers.Serializer):
|
|
"""
|
|
Serializer for progress tab
|
|
"""
|
|
course_blocks = CourseBlockSerializer()
|
|
enrollment_mode = serializers.CharField()
|