mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
changelog, codestyle
This commit is contained in:
parent
f156f05b37
commit
e1853583b0
@ -13,8 +13,8 @@ paperless-ng 0.9.4
|
||||
* Paperless now supports searching by tags, types and dates. In order to have this applied to your
|
||||
existing documents, you need to perform a ``document_index reindex`` management command
|
||||
(see :ref:`administration-index`)
|
||||
that adds tags to your search index. You only need to do this once, so that paperless can find
|
||||
your documents by tags,types and dates. Paperless keeps your index updated after that whenever
|
||||
that adds the new data to the search index. You only need to do this once, so that paperless can find
|
||||
your documents by tags,types and dates. Paperless keeps the index updated after that whenever
|
||||
something changes.
|
||||
* Paperless now has spelling corrections ("Did you mean") for misstyped queries.
|
||||
* The documentation contains :ref:`information about the query syntax <basic-searching>`.
|
||||
|
@ -217,7 +217,7 @@ class SearchView(APIView):
|
||||
}
|
||||
|
||||
def get(self, request, format=None):
|
||||
if not 'query' in request.query_params:
|
||||
if 'query' not in request.query_params:
|
||||
return Response({
|
||||
'count': 0,
|
||||
'page': 0,
|
||||
|
Loading…
x
Reference in New Issue
Block a user