Skip to content

Commit

Permalink
Closes #3842: Add RJ-12 console port type
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystretch committed Jan 9, 2020
1 parent 1f17503 commit 2a2bc66
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions netbox/dcim/choices.py
Expand Up @@ -195,6 +195,7 @@ class ConsolePortTypeChoices(ChoiceSet):

TYPE_DE9 = 'de-9'
TYPE_DB25 = 'db-25'
TYPE_RJ12 = 'rj-12'
TYPE_RJ45 = 'rj-45'
TYPE_USB_A = 'usb-a'
TYPE_USB_B = 'usb-b'
Expand All @@ -209,6 +210,7 @@ class ConsolePortTypeChoices(ChoiceSet):
('Serial', (
(TYPE_DE9, 'DE-9'),
(TYPE_DB25, 'DB-25'),
(TYPE_RJ12, 'RJ-12'),
(TYPE_RJ45, 'RJ-45'),
)),
('USB', (
Expand Down

0 comments on commit 2a2bc66

Please sign in to comment.