Fixes on process logic
This commit is contained in:
parent
838a017f14
commit
9d759530e6
@ -109,8 +109,8 @@ function change_policy:approve_change(module_slug, policy, input)
|
|||||||
function()
|
function()
|
||||||
modpol.interactions.message(
|
modpol.interactions.message(
|
||||||
self.initiator,
|
self.initiator,
|
||||||
"Updating " .. policy .. " policy on module " ..
|
"In ".. self.org.name .. " updating " .. policy ..
|
||||||
module_slug .. " with: " .. input)
|
" policy on module " .. module_slug .. " with: " .. input)
|
||||||
self.org.policies[module_slug][policy] = input
|
self.org.policies[module_slug][policy] = input
|
||||||
modpol.interactions.org_dashboard(
|
modpol.interactions.org_dashboard(
|
||||||
self.initiator, self.org.id)
|
self.initiator, self.org.id)
|
||||||
|
@ -15,17 +15,15 @@ function modpol.orgs:call_module(module_slug, initiator, config, result, parent_
|
|||||||
and result() then
|
and result() then
|
||||||
result()
|
result()
|
||||||
return
|
return
|
||||||
|
elseif not modpol.modules[module_slug] then
|
||||||
|
-- if module doesn't exist, abort
|
||||||
|
modpol.ocutil.log('Error in ' .. self.name .. ':call_module -> module "' .. tostring(module_slug) .. '" not found')
|
||||||
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
-- if module doesn't exist, abort
|
local index = #self.processes + 1
|
||||||
if not modpol.modules[module_slug] then
|
|
||||||
modpol.ocutil.log('Error in ' .. self.name .. ':call_module -> module "' .. tostring(module_slug) .. '" not found')
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local index = #self.processes + 1
|
local module = modpol.modules[module_slug]
|
||||||
|
|
||||||
local module = modpol.modules[module_slug]
|
|
||||||
|
|
||||||
-- first applies any relevant org policies
|
-- first applies any relevant org policies
|
||||||
-- then overrides with the config values given on input
|
-- then overrides with the config values given on input
|
||||||
|
Loading…
x
Reference in New Issue
Block a user