Skip to content

Commit aef8c5f

Browse files
Merge pull request #6965 from bluikko/poweroutlet-hardwired
Add hardwired PowerOutlet
2 parents cfa4f56 + 5a8cedd commit aef8c5f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

netbox/dcim/choices.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -553,6 +553,8 @@ class PowerOutletTypeChoices(ChoiceSet):
553553
# Proprietary
554554
TYPE_HDOT_CX = 'hdot-cx'
555555
TYPE_SAF_D_GRID = 'saf-d-grid'
556+
# Other
557+
TYPE_HARDWIRED = 'hardwired'
556558

557559
CHOICES = (
558560
('IEC 60320', (
@@ -654,6 +656,9 @@ class PowerOutletTypeChoices(ChoiceSet):
654656
(TYPE_HDOT_CX, 'HDOT Cx'),
655657
(TYPE_SAF_D_GRID, 'Saf-D-Grid'),
656658
)),
659+
('Other', (
660+
(TYPE_HARDWIRED, 'Hardwired'),
661+
)),
657662
)
658663

659664

0 commit comments

Comments
 (0)