#19404 Deduplicate IP Range API Serializer (#19405)

This commit is contained in:
mr1716 2025-05-05 15:31:12 -04:00 committed by GitHub
parent 2c014bade5
commit 21e813cee2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -147,8 +147,7 @@ class IPRangeSerializer(NetBoxModelSerializer):
fields = [
'id', 'url', 'display_url', 'display', 'family', 'start_address', 'end_address', 'size', 'vrf', 'tenant',
'status', 'role', 'description', 'comments', 'tags', 'custom_fields', 'created', 'last_updated',
'mark_populated', 'mark_utilized', 'description', 'comments', 'tags', 'custom_fields', 'created',
'last_updated',
'mark_populated', 'mark_utilized',
]
brief_fields = ('id', 'url', 'display', 'family', 'start_address', 'end_address', 'description')