Changed modpol.orgs.list_all to return table not string
This commit is contained in:
@@ -12,7 +12,8 @@
|
||||
modpol.dashboard = function(user)
|
||||
local output = ""
|
||||
-- Org status
|
||||
output = output .. "Orgs:\n" .. modpol.orgs.list_all()
|
||||
output = output .. "Orgs:\n" ..
|
||||
table.concat(modpol.orgs.list_all(),"\n")
|
||||
-- Process status (ongoing processes)
|
||||
output = output .. "\nProcesses:\n" .. table.concat(modpol.processes)
|
||||
-- Command list (should be redone to be org-specific)
|
||||
|
||||
Reference in New Issue
Block a user