remove _object from document results, which makes the API about 33% faster.

This commit is contained in:
jonaswinkler 2020-12-04 01:17:55 +01:00
parent 982ea84906
commit 0a18c819d4

View File

@ -83,25 +83,16 @@ class DocumentSerializer(serializers.ModelSerializer):
tags = TagsField(many=True)
document_type = DocumentTypeField(allow_null=True)
correspondent_object = TagSerializer(
read_only=True, source="correspondent")
document_type_object = TagSerializer(
read_only=True, source="document_type")
tags_objects = TagSerializer(many=True, read_only=True, source="tags")
class Meta:
model = Document
depth = 1
fields = (
"id",
"correspondent",
"correspondent_object",
"document_type",
"document_type_object",
"title",
"content",
"tags",
"tags_objects",
"created",
"modified",
"added",