Skip to content

Commit 843b537

Browse files
committed
fix: PageSerializer.sections가 모든 section를 응답하는 문제 해소
1 parent 240a15d commit 843b537

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/cms/serializers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Meta:
1616

1717

1818
class PageSerializer(serializers.ModelSerializer):
19-
sections = SectionSerializer(many=True, read_only=True)
19+
sections = SectionSerializer(many=True, read_only=True, source="active_sections")
2020

2121
class Meta:
2222
model = Page

0 commit comments

Comments
 (0)