This commit is contained in:
everbarry 2026-05-06 18:23:53 +02:00
parent 9b2076b0fe
commit 063152ca46

View File

@ -176,6 +176,14 @@ def _cmd_credentials_list(args):
for reg_hex, role in local:
print(f" {reg_hex}:{role}")
owned = store.list_admin_registries(args.userid)
print("\nowner admin capability:")
if not owned:
print(" (none)")
else:
for reg_hex in owned:
print(f" {reg_hex}:__admin__ (reserved owner role)")
print("\npending grants: removed (use direct p2p listener)")