Skip to content

Commit 42c29d0

Browse files
Merge pull request #5342 from JonathonReinhart/5337-add-splice-rearport-type
Closes #5337: Add "splice" port type
2 parents 340e665 + 7aa9ecd commit 42c29d0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

netbox/dcim/choices.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -830,6 +830,7 @@ class PortTypeChoices(ChoiceSet):
830830
TYPE_MPO = 'mpo'
831831
TYPE_LSH = 'lsh'
832832
TYPE_LSH_APC = 'lsh-apc'
833+
TYPE_SPLICE = 'splice'
833834

834835
CHOICES = (
835836
(
@@ -857,6 +858,7 @@ class PortTypeChoices(ChoiceSet):
857858
(TYPE_SC, 'SC'),
858859
(TYPE_SC_APC, 'SC/APC'),
859860
(TYPE_ST, 'ST'),
861+
(TYPE_SPLICE, 'Splice'),
860862
)
861863
)
862864
)

0 commit comments

Comments
 (0)