2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-29 20:16:44 +00:00

Remove regex search functionality from part api

This commit is contained in:
Oliver Walters 2021-02-23 16:57:17 +11:00
parent ad7a70f033
commit a48be3bea9

View File

@ -665,9 +665,9 @@ class PartList(generics.ListCreateAPIView):
ordering = 'name' ordering = 'name'
search_fields = [ search_fields = [
'$name', 'name',
'description', 'description',
'$IPN', 'IPN',
'keywords', 'keywords',
] ]