Skip to content

Commit 571f604

Browse files
committed
Fixes #18368: Restore missing fields on REST API serializer for MAC addresses
1 parent b12c8c8 commit 571f604

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

netbox/dcim/api/serializers_/devices.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ class Meta:
171171
model = MACAddress
172172
fields = [
173173
'id', 'url', 'display_url', 'display', 'mac_address', 'assigned_object_type', 'assigned_object_id',
174-
'assigned_object', 'description', 'comments',
174+
'assigned_object', 'description', 'comments', 'tags', 'custom_fields', 'created', 'last_updated',
175175
]
176176
brief_fields = ('id', 'url', 'display', 'mac_address', 'description')
177177

0 commit comments

Comments
 (0)