Module:Sanctions/AlertHelper
Appearance
local p = {}
local getArgs = require('Module:Arguments').getArgs
function p.build(frame, args)
topic = args[1] or args['topic']
if not topic then
--
end
return frame:expandTemplate{
title = 'Ds/alert/sandbox',
args = { topic }
}
end
function p.main(frame)
local args = getArgs(frame)
return p.build(frame, args)
end
return p