iteration
This commit is contained in:
17
lib/auth.lua
17
lib/auth.lua
@ -49,6 +49,23 @@ function check_user_group(username, group)
|
||||
end
|
||||
end
|
||||
|
||||
function trueKeysToString(tbl)
|
||||
local result = ""
|
||||
local first = true
|
||||
|
||||
for key, value in pairs(tbl) do
|
||||
if value == true then
|
||||
if not first then
|
||||
result = result .. ", "
|
||||
else
|
||||
first = false
|
||||
end
|
||||
result = result .. key
|
||||
end
|
||||
end
|
||||
|
||||
return result
|
||||
end
|
||||
|
||||
function list_to_string(list)
|
||||
local str = ""
|
||||
|
Reference in New Issue
Block a user