File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 88* [ #6973 ] ( https://github.com/netbox-community/netbox/issues/6973 ) - Enable custom ordering of reports
99* [ #7022 ] ( https://github.com/netbox-community/netbox/issues/7022 ) - Add ITA type C (CEE 7/16) power port type
1010* [ #7118 ] ( https://github.com/netbox-community/netbox/issues/7118 ) - Render URL custom fields as hyperlinks in object tables
11+ * [ #7314 ] ( https://github.com/netbox-community/netbox/issues/7314 ) - Add SMA 905/906 fiber port types
1112* [ #7323 ] ( https://github.com/netbox-community/netbox/issues/7323 ) - Add serial filter field for racks & devices
1213* [ #7372 ] ( https://github.com/netbox-community/netbox/issues/7372 ) - Link to local docs for model from object add/edit views
1314* [ #7389 ] ( https://github.com/netbox-community/netbox/issues/7389 ) - Linkify tenant group in tenants list
Original file line number Diff line number Diff line change @@ -969,6 +969,8 @@ class PortTypeChoices(ChoiceSet):
969969 TYPE_SPLICE = 'splice'
970970 TYPE_CS = 'cs'
971971 TYPE_SN = 'sn'
972+ TYPE_SMA_905 = 'sma-905'
973+ TYPE_SMA_906 = 'sma-906'
972974 TYPE_URM_P2 = 'urm-p2'
973975 TYPE_URM_P4 = 'urm-p4'
974976 TYPE_URM_P8 = 'urm-p8'
@@ -1012,6 +1014,8 @@ class PortTypeChoices(ChoiceSet):
10121014 (TYPE_ST , 'ST' ),
10131015 (TYPE_CS , 'CS' ),
10141016 (TYPE_SN , 'SN' ),
1017+ (TYPE_SMA_905 , 'SMA 905' ),
1018+ (TYPE_SMA_906 , 'SMA 906' ),
10151019 (TYPE_URM_P2 , 'URM-P2' ),
10161020 (TYPE_URM_P4 , 'URM-P4' ),
10171021 (TYPE_URM_P8 , 'URM-P8' ),
You can’t perform that action at this time.
0 commit comments