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

Closes #2649: Add connected_endpoint_type to connectable device component API representations

This commit is contained in:
Jeremy Stretch
2018-12-06 16:14:03 -05:00
parent 360303f86c
commit 45a1dfbd8a
3 changed files with 29 additions and 7 deletions

View File

@@ -60,5 +60,5 @@ class CircuitTerminationSerializer(ConnectedEndpointSerializer):
model = CircuitTermination
fields = [
'id', 'circuit', 'term_side', 'site', 'port_speed', 'upstream_speed', 'xconnect_id', 'pp_info',
'description', 'connected_endpoint', 'connection_status', 'cable',
'description', 'connected_endpoint_type', 'connected_endpoint', 'connection_status', 'cable',
]