Allow ordering by date fields

This commit is contained in:
Daniel Quinn 2016-03-13 16:45:12 +00:00
parent 705a5b8a84
commit e1203ab9ab

View File

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