Removed 'is_patch_panel' from DeviceType

This commit is contained in:
Jeremy Stretch
2018-10-25 12:44:28 -04:00
parent b19e2037af
commit 266429101b
8 changed files with 19 additions and 55 deletions

View File

@@ -226,7 +226,7 @@ class DeviceTypeSerializer(TaggitSerializer, CustomFieldModelSerializer):
model = DeviceType
fields = [
'id', 'manufacturer', 'model', 'slug', 'part_number', 'u_height', 'is_full_depth', 'interface_ordering',
'is_console_server', 'is_pdu', 'is_network_device', 'is_patch_panel', 'subdevice_role', 'comments', 'tags',
'is_console_server', 'is_pdu', 'is_network_device', 'subdevice_role', 'comments', 'tags',
'custom_fields', 'created', 'last_updated', 'instance_count',
]