Closes #18828: Add MDC fiber connector to the list of available port types

This commit is contained in:
Ciro Iriarte 2026-07-03 20:57:00 -03:00 committed by GitHub
parent 6edb5ec8b7
commit 945634724b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View File

@ -625,6 +625,7 @@
"st",
"cs",
"sn",
"mdc",
"sma-905",
"sma-906",
"urm-p2",
@ -697,6 +698,7 @@
"st",
"cs",
"sn",
"mdc",
"sma-905",
"sma-906",
"urm-p2",

View File

@ -1654,6 +1654,7 @@ class PortTypeChoices(ChoiceSet):
TYPE_SPLICE = 'splice'
TYPE_CS = 'cs'
TYPE_SN = 'sn'
TYPE_MDC = 'mdc'
TYPE_SMA_905 = 'sma-905'
TYPE_SMA_906 = 'sma-906'
TYPE_URM_P2 = 'urm-p2'
@ -1725,6 +1726,7 @@ class PortTypeChoices(ChoiceSet):
(TYPE_ST, 'ST'),
(TYPE_CS, 'CS'),
(TYPE_SN, 'SN'),
(TYPE_MDC, 'MDC'),
(TYPE_SMA_905, 'SMA 905'),
(TYPE_SMA_906, 'SMA 906'),
(TYPE_URM_P2, 'URM-P2'),