Closes #3842: Add 802.11ax interface type

This commit is contained in:
Jeremy Stretch 2020-01-17 16:20:11 -05:00
parent 302f87e108
commit a4687be5e5
2 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,9 @@
# v2.7.2 (FUTURE)
## Enhancements
* [#3842](https://github.com/netbox-community/netbox/issues/3842) - Add 802.11ax interface type
## Bug Fixes
* [#3951](https://github.com/netbox-community/netbox/issues/3951) - Fix exception in webhook worker due to missing constant

View File

@ -545,6 +545,7 @@ class InterfaceTypeChoices(ChoiceSet):
TYPE_80211N = 'ieee802.11n'
TYPE_80211AC = 'ieee802.11ac'
TYPE_80211AD = 'ieee802.11ad'
TYPE_80211AX = 'ieee802.11ax'
# Cellular
TYPE_GSM = 'gsm'
@ -650,6 +651,7 @@ class InterfaceTypeChoices(ChoiceSet):
(TYPE_80211N, 'IEEE 802.11n'),
(TYPE_80211AC, 'IEEE 802.11ac'),
(TYPE_80211AD, 'IEEE 802.11ad'),
(TYPE_80211AX, 'IEEE 802.11ax'),
)
),
(