iteration
This commit is contained in:
parent
6eca8bd3a5
commit
20a8b68314
@ -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
|
||||
|
@ -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]
|
||||
|
Loading…
Reference in New Issue
Block a user