2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-05-01 04:56:45 +00:00

Fix for part category API

This commit is contained in:
Oliver 2017-04-11 23:36:01 +10:00
parent 4c07e8d8a0
commit 5853a5767c

View File

@ -39,4 +39,4 @@ class PartCategoryList(generics.ListAPIView):
Categories are considered "top-level" if they do not have a parent Categories are considered "top-level" if they do not have a parent
""" """
queryset = PartCategory.objects.filter(parent=None) queryset = PartCategory.objects.filter(parent=None)
serializer_class = PartCategoryBriefSerializer serializer_class = PartCategoryDetailSerializer