zerotier-members: print authorized state on list
All checks were successful
checks-impure / test (pull_request) Successful in 1m27s
checks / test (pull_request) Successful in 2m25s

This commit is contained in:
lassulus 2024-01-08 22:27:27 +01:00
parent df5e6761e6
commit c73818c1a5

View File

@ -53,7 +53,7 @@ def list_members(args: argparse.Namespace) -> None:
member_id = data["id"]
except KeyError:
raise ClanError(f"error: {member} does not contain an id")
print(member_id)
print(member_id, data["authorized"] or "false")
def main() -> None: