Module:Article history/config: Difference between revisions

Content deleted Content added
convert DGA status to FFA automatically for any articles that have been delisted at FAR
add tracking categories for small banners, for gacat parameters, and for BP actions
Line 1,102:
aliases = {'pass', 'promoted', 'nom'}
}
},
categories = function ()
return {Category.new('Article history templates with BP actions')}
end
},
RBP = {
Line 2,001 ⟶ 2,004:
end
return ret
end,
 
-- Track the gacat parameter
function (articleHistoryObj)
local ret = {}
if articleHistoryObj.args.gacat then
table.insert(ret, Category.new('Article history templates with deprecated parameters'))
end
return ret
end,
 
-- Track small banners
function (articleHistoryObj)
local ret = {}
if articleHistoryObj.isSmall then
table.insert(ret, Category.new('Small article history templates'))
end
return ret
end,
},