mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
remove _object from document results, which makes the API about 33% faster.
This commit is contained in:
parent
982ea84906
commit
0a18c819d4
@ -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",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user