Skip to content

Commit

Permalink
Closes #3842: Add 802.11ax interface type
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystretch committed Jan 17, 2020
1 parent 302f87e commit a4687be
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/release-notes/version-2.7.md
@@ -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
Expand Down
2 changes: 2 additions & 0 deletions netbox/dcim/choices.py
Expand Up @@ -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'
Expand Down Expand Up @@ -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'),
)
),
(
Expand Down

0 comments on commit a4687be

Please sign in to comment.