mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Closes #6160: Add F connector port type
This commit is contained in:
@ -5,6 +5,7 @@
|
|||||||
### Enhancements
|
### Enhancements
|
||||||
|
|
||||||
* [#6157](https://github.com/netbox-community/netbox/issues/6157) - Support Markdown rendering for report logs
|
* [#6157](https://github.com/netbox-community/netbox/issues/6157) - Support Markdown rendering for report logs
|
||||||
|
* [#6160](https://github.com/netbox-community/netbox/issues/6160) - Add F connector port type
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
|
@ -881,6 +881,7 @@ class PortTypeChoices(ChoiceSet):
|
|||||||
TYPE_TERA1P = 'tera-1p'
|
TYPE_TERA1P = 'tera-1p'
|
||||||
TYPE_110_PUNCH = '110-punch'
|
TYPE_110_PUNCH = '110-punch'
|
||||||
TYPE_BNC = 'bnc'
|
TYPE_BNC = 'bnc'
|
||||||
|
TYPE_F = 'f'
|
||||||
TYPE_MRJ21 = 'mrj21'
|
TYPE_MRJ21 = 'mrj21'
|
||||||
TYPE_ST = 'st'
|
TYPE_ST = 'st'
|
||||||
TYPE_SC = 'sc'
|
TYPE_SC = 'sc'
|
||||||
@ -910,6 +911,7 @@ class PortTypeChoices(ChoiceSet):
|
|||||||
(TYPE_TERA1P, 'TERA 1P'),
|
(TYPE_TERA1P, 'TERA 1P'),
|
||||||
(TYPE_110_PUNCH, '110 Punch'),
|
(TYPE_110_PUNCH, '110 Punch'),
|
||||||
(TYPE_BNC, 'BNC'),
|
(TYPE_BNC, 'BNC'),
|
||||||
|
(TYPE_F, 'F Connector'),
|
||||||
(TYPE_MRJ21, 'MRJ21'),
|
(TYPE_MRJ21, 'MRJ21'),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
Reference in New Issue
Block a user