Skip to content

Commit

Permalink
Fixes #15603 - Added 5G to Cellular choices in dcim/choices.py. (#15677)
Browse files Browse the repository at this point in the history
* Added 5G to Cellular choices in dcim/choices.py.

* Added 4G for Cellular choices.
  • Loading branch information
Julio-Oliveira-Encora committed May 21, 2024
1 parent 85ca750 commit b0520b9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions netbox/dcim/choices.py
Original file line number Diff line number Diff line change
Expand Up @@ -892,6 +892,8 @@ class InterfaceTypeChoices(ChoiceSet):
TYPE_GSM = 'gsm'
TYPE_CDMA = 'cdma'
TYPE_LTE = 'lte'
TYPE_4G = '4g'
TYPE_5G = '5g'

# SONET
TYPE_SONET_OC3 = 'sonet-oc3'
Expand Down Expand Up @@ -1060,6 +1062,8 @@ class InterfaceTypeChoices(ChoiceSet):
(TYPE_GSM, 'GSM'),
(TYPE_CDMA, 'CDMA'),
(TYPE_LTE, 'LTE'),
(TYPE_4G, '4G'),
(TYPE_5G, '5G'),
)
),
(
Expand Down

0 comments on commit b0520b9

Please sign in to comment.