1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Rename max_utilization to power_factor

This commit is contained in:
Jeremy Stretch
2019-04-10 16:36:38 -04:00
parent ac3e899f5e
commit b22fd2bc44
6 changed files with 10 additions and 10 deletions

View File

@@ -660,5 +660,5 @@ class PowerFeedSerializer(TaggitSerializer, CustomFieldModelSerializer):
model = PowerFeed
fields = [
'id', 'power_panel', 'rack', 'name', 'status', 'type', 'supply', 'phase', 'voltage', 'amperage',
'max_utilization', 'comments', 'tags', 'custom_fields', 'created', 'last_updated',
'power_factor', 'comments', 'tags', 'custom_fields', 'created', 'last_updated',
]