From 10810eeaa78f7023469f7f36135d8e505995afa3 Mon Sep 17 00:00:00 2001 From: Nathan Schneider Date: Thu, 15 Apr 2021 23:33:40 -0600 Subject: [PATCH] Fixed modpol.dashboard call for listing orgs to new nomenclature --- modpol/interactions/interactions.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modpol/interactions/interactions.lua b/modpol/interactions/interactions.lua index bb6f1b4..e4aeb6e 100644 --- a/modpol/interactions/interactions.lua +++ b/modpol/interactions/interactions.lua @@ -12,8 +12,9 @@ modpol.dashboard = function(user) local output = "" -- Org status - output = output .. "Orgs:\n" .. modpol.orgs.list_orgs() + output = output .. "Orgs:\n" .. modpol.orgs.list_all() -- Process status (ongoing processes) + output = output .. "Processes:\n" .. table.concat(modpol.processes) -- Command list (should be redone to be org-specific) output = output .. "Command list:\n" for key,value in pairs(modpol) do