[Update] Asset filter 添加 platform__name 字段

pull/3992/head
xinwen 2020-05-12 17:09:36 +08:00
parent b310731ba7
commit 4dd6d4498b
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class AssetViewSet(OrgBulkModelViewSet):
API endpoint that allows Asset to be viewed or edited.
"""
model = Asset
filter_fields = ("hostname", "ip", "systemuser__id", "admin_user__id")
filter_fields = ("hostname", "ip", "systemuser__id", "admin_user__id", "platform__name")
search_fields = ("hostname", "ip")
ordering_fields = ("hostname", "ip", "port", "cpu_cores")
serializer_classes = {