mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 09:51:22 -06:00
Closes #8736: Add PC and UPC fiber end faces for LC/SC/LSH port types
This commit is contained in:
parent
7f752d9102
commit
2b6e0405a5
@ -6,6 +6,7 @@
|
|||||||
|
|
||||||
* [#8594](https://github.com/netbox-community/netbox/issues/8594) - Enable filtering by exact description match for all applicable models
|
* [#8594](https://github.com/netbox-community/netbox/issues/8594) - Enable filtering by exact description match for all applicable models
|
||||||
* [#8629](https://github.com/netbox-community/netbox/issues/8629) - Add description to tag table search function
|
* [#8629](https://github.com/netbox-community/netbox/issues/8629) - Add description to tag table search function
|
||||||
|
* [#8736](https://github.com/netbox-community/netbox/issues/8736) - Add PC and UPC fiber end faces for LC/SC/LSH port types
|
||||||
* [#8762](https://github.com/netbox-community/netbox/issues/8762) - Link to rack elevations list from site view
|
* [#8762](https://github.com/netbox-community/netbox/issues/8762) - Link to rack elevations list from site view
|
||||||
* [#8766](https://github.com/netbox-community/netbox/issues/8766) - Add SCTP to service protocols list
|
* [#8766](https://github.com/netbox-community/netbox/issues/8766) - Add SCTP to service protocols list
|
||||||
|
|
||||||
|
@ -1013,13 +1013,19 @@ class PortTypeChoices(ChoiceSet):
|
|||||||
TYPE_MRJ21 = 'mrj21'
|
TYPE_MRJ21 = 'mrj21'
|
||||||
TYPE_ST = 'st'
|
TYPE_ST = 'st'
|
||||||
TYPE_SC = 'sc'
|
TYPE_SC = 'sc'
|
||||||
|
TYPE_SC_PC = 'sc-pc'
|
||||||
|
TYPE_SC_UPC = 'sc-upc'
|
||||||
TYPE_SC_APC = 'sc-apc'
|
TYPE_SC_APC = 'sc-apc'
|
||||||
TYPE_FC = 'fc'
|
TYPE_FC = 'fc'
|
||||||
TYPE_LC = 'lc'
|
TYPE_LC = 'lc'
|
||||||
|
TYPE_LC_PC = 'lc-pc'
|
||||||
|
TYPE_LC_UPC = 'lc-upc'
|
||||||
TYPE_LC_APC = 'lc-apc'
|
TYPE_LC_APC = 'lc-apc'
|
||||||
TYPE_MTRJ = 'mtrj'
|
TYPE_MTRJ = 'mtrj'
|
||||||
TYPE_MPO = 'mpo'
|
TYPE_MPO = 'mpo'
|
||||||
TYPE_LSH = 'lsh'
|
TYPE_LSH = 'lsh'
|
||||||
|
TYPE_LSH_PC = 'lsh-pc'
|
||||||
|
TYPE_LSH_UPC = 'lsh-upc'
|
||||||
TYPE_LSH_APC = 'lsh-apc'
|
TYPE_LSH_APC = 'lsh-apc'
|
||||||
TYPE_SPLICE = 'splice'
|
TYPE_SPLICE = 'splice'
|
||||||
TYPE_CS = 'cs'
|
TYPE_CS = 'cs'
|
||||||
@ -1059,12 +1065,18 @@ class PortTypeChoices(ChoiceSet):
|
|||||||
(
|
(
|
||||||
(TYPE_FC, 'FC'),
|
(TYPE_FC, 'FC'),
|
||||||
(TYPE_LC, 'LC'),
|
(TYPE_LC, 'LC'),
|
||||||
|
(TYPE_LC_PC, 'LC/PC'),
|
||||||
|
(TYPE_LC_UPC, 'LC/UPC'),
|
||||||
(TYPE_LC_APC, 'LC/APC'),
|
(TYPE_LC_APC, 'LC/APC'),
|
||||||
(TYPE_LSH, 'LSH'),
|
(TYPE_LSH, 'LSH'),
|
||||||
|
(TYPE_LSH_PC, 'LSH/PC'),
|
||||||
|
(TYPE_LSH_UPC, 'LSH/UPC'),
|
||||||
(TYPE_LSH_APC, 'LSH/APC'),
|
(TYPE_LSH_APC, 'LSH/APC'),
|
||||||
(TYPE_MPO, 'MPO'),
|
(TYPE_MPO, 'MPO'),
|
||||||
(TYPE_MTRJ, 'MTRJ'),
|
(TYPE_MTRJ, 'MTRJ'),
|
||||||
(TYPE_SC, 'SC'),
|
(TYPE_SC, 'SC'),
|
||||||
|
(TYPE_SC_PC, 'SC/PC'),
|
||||||
|
(TYPE_SC_UPC, 'SC/UPC'),
|
||||||
(TYPE_SC_APC, 'SC/APC'),
|
(TYPE_SC_APC, 'SC/APC'),
|
||||||
(TYPE_ST, 'ST'),
|
(TYPE_ST, 'ST'),
|
||||||
(TYPE_CS, 'CS'),
|
(TYPE_CS, 'CS'),
|
||||||
|
Loading…
Reference in New Issue
Block a user