2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 12:35:46 +00:00

Adds ability to search build API by part parameters (#3110)

* Adds ability to filter build API by part parameters

* Bump API version
This commit is contained in:
Oliver
2022-06-01 16:52:43 +10:00
committed by GitHub
parent 8c9f676ffb
commit e174096173
2 changed files with 7 additions and 2 deletions

View File

@ -106,8 +106,10 @@ class BuildList(APIDownloadMixin, generics.ListCreateAPIView):
search_fields = [
'reference',
'part__name',
'title',
'part__name',
'part__IPN',
'part__description',
]
def get_queryset(self):