Content deleted Content added
remove the BP category |
add tracking category for Wikipedia:Deletion to Quality Award |
||
Line 1,996:
if isPossibleFour then
ret[#ret + 1] = Category.new('Possible Wikipedia four award articles')
end
end
return ret
end,
-- Deletion to Quality award
function (articleHistoryObj)
local ret = {}
local status = articleHistoryObj:getStatusId()
if status == 'FA' or status == 'FL' or status == 'GA' then
local hasAfd = false
for i, obj in ipairs(articleHistoryObj:getActionObjects()) do
if obj.id == 'AFD' then
hasAfd = true
break
end
end
if hasAfd then
ret[#ret + 1] = Category.new('Deletion to Quality Award candidates')
end
end
|