File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1515* [ #6252 ] ( https://github.com/netbox-community/netbox/issues/6252 ) - Fix assignment of console port speed values above 19.2kbps
1616* [ #6254 ] ( https://github.com/netbox-community/netbox/issues/6254 ) - Disable ordering of space column in racks table
1717* [ #6258 ] ( https://github.com/netbox-community/netbox/issues/6258 ) - Fix parent assignment for SiteGroup API serializer
18+ * [ #6267 ] ( https://github.com/netbox-community/netbox/issues/6267 ) - Fix cable tracing API endpoint for circuit terminations
1819
1920---
2021
@@ -193,6 +194,7 @@ A new provider network model has been introduced to represent the boundary of a
193194* circuits.CircuitTermination
194195 * Added the ` provider_network ` field
195196 * Removed the ` connected_endpoint ` , ` connected_endpoint_type ` , and ` connected_endpoint_reachable ` fields
197+ * The ` trace/ ` endpoint has been replaced with ` paths/ `
196198* circuits.ProviderNetwork
197199 * Added the ` /api/circuits/provider-networks/ ` endpoint
198200* dcim.Device
Original file line number Diff line number Diff line change 22
33from circuits import filters
44from circuits .models import *
5- from dcim .api .views import PathEndpointMixin
5+ from dcim .api .views import PassThroughPortMixin
66from extras .api .views import CustomFieldModelViewSet
77from netbox .api .views import ModelViewSet
88from utilities .utils import count_related
@@ -57,7 +57,7 @@ class CircuitViewSet(CustomFieldModelViewSet):
5757# Circuit Terminations
5858#
5959
60- class CircuitTerminationViewSet (PathEndpointMixin , ModelViewSet ):
60+ class CircuitTerminationViewSet (PassThroughPortMixin , ModelViewSet ):
6161 queryset = CircuitTermination .objects .prefetch_related (
6262 'circuit' , 'site' , 'provider_network' , 'cable'
6363 )
You can’t perform that action at this time.
0 commit comments