iteration

This commit is contained in:
Layla 2023-10-08 04:52:13 -04:00
parent 6eca8bd3a5
commit 20a8b68314
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ function list_user_groups(username)
io.write("Invalid token\n")
return
else
return list_to_string(msg)
return msg
end
end
end

View File

@ -101,7 +101,7 @@ elseif action == "group" then
if subaction == "list" then
local result = auth.list_user_groups(settings.get("auth.username"))
io.write("Groups: " .. result .. "\n")
io.write("Groups: " .. auth.list_to_string(result) .. "\n")
elseif subaction == "add" then
local target_user = args[3]
local group = args[4]