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)
|
||||
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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user