Merge pull request #471 from khrise/added-missing-column-to-rest-api

Exposing documents' "added" timestamp via Rest API.
This commit is contained in:
Daniel Quinn 2019-01-04 11:36:38 +00:00 committed by GitHub
commit 75a79ac204
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -46,6 +46,7 @@ class DocumentSerializer(serializers.ModelSerializer):
"checksum",
"created",
"modified",
"added",
"file_name",
"download_url",
"thumbnail_url",

View File

@ -130,7 +130,7 @@ class DocumentViewSet(RetrieveModelMixin,
filter_class = DocumentFilterSet
search_fields = ("title", "correspondent__name", "content")
ordering_fields = (
"id", "title", "correspondent__name", "created", "modified")
"id", "title", "correspondent__name", "created", "modified", "added")
class LogViewSet(ReadOnlyModelViewSet):