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) tags = TagsField(many=True)
document_type = DocumentTypeField(allow_null=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: class Meta:
model = Document model = Document
depth = 1 depth = 1
fields = ( fields = (
"id", "id",
"correspondent", "correspondent",
"correspondent_object",
"document_type", "document_type",
"document_type_object",
"title", "title",
"content", "content",
"tags", "tags",
"tags_objects",
"created", "created",
"modified", "modified",
"added", "added",