mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Add rf_role to Interface
This commit is contained in:
@@ -1139,6 +1139,16 @@ class CableLengthUnitChoices(ChoiceSet):
|
||||
# Wireless
|
||||
#
|
||||
|
||||
class WirelessRoleChoices(ChoiceSet):
|
||||
ROLE_AP = 'ap'
|
||||
ROLE_STATION = 'station'
|
||||
|
||||
CHOICES = (
|
||||
(ROLE_AP, 'Access point'),
|
||||
(ROLE_STATION, 'Station'),
|
||||
)
|
||||
|
||||
|
||||
class WirelessChannelChoices(ChoiceSet):
|
||||
CHANNEL_AUTO = 'auto'
|
||||
|
||||
|
Reference in New Issue
Block a user