Skip to content

Commit

Permalink
Add do_set_acl_members method
Browse files Browse the repository at this point in the history
  • Loading branch information
ms264556 committed Apr 27, 2024
1 parent 4bf5f22 commit 65aac1c
Show file tree
Hide file tree
Showing 6 changed files with 707 additions and 848 deletions.
4 changes: 2 additions & 2 deletions aioruckus/ajaxsession.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ async def login(self) -> None:
raise ConnectionRefusedError(ERROR_CONNECT_TEMPORARY)

# pylint: disable=import-outside-toplevel
from .nativeajaxapi import NativeAjaxApi
self._api = NativeAjaxApi(self)
from .ruckusajaxapi import RuckusAjaxApi
self._api = RuckusAjaxApi(self)
return self

async def sz_login(self) -> None:
Expand Down
3 changes: 3 additions & 0 deletions aioruckus/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
ERROR_PASSPHRASE_MISSING = "WPA2 and Mixed WPA2/3 WLANs require a passphrase"
ERROR_SAEPASSPHRASE_MISSING = "WPA3 and Mixed WPA2/3 WLANs require an SAE passphrase"
ERROR_PASSPHRASE_NAME = "You must also provide a name if you wish to override the passphrase"
ERROR_ACL_NOT_FOUND = "ACL not found"
ERROR_ACL_TOO_BIG = "ACLs may only contain 128 stations"
ERROR_ACL_SYSTEM = "Please use do_block_client() and do_unblock_client() to modify the System ACL"

class SystemStat(Enum):
"""Ruckus System Info section keys"""
Expand Down
Loading

0 comments on commit 65aac1c

Please sign in to comment.