Content deleted Content added
Create sandbox version of Module:Effective protection expiry |
using mw.ext.FlaggedRevs.getStabilitySettings(title) to get expiry for FlaggedRevs |
||
(7 intermediate revisions by 2 users not shown) | |||
Line 14:
pagename = title.prefixedText
if action == 'autoreview' then
return mw.ext.FlaggedRevs.getStabilitySettings(title).expiry
elseif action ~= 'edit' and action ~= 'move' and action ~= 'create' and action ~= 'upload' then
error( 'First parameter must be one of edit, move, create, upload, autoreview', 2 )
Line 24:
return 'unknown'
else
local year,
'^(%d%d%d%d)(%d%d)(%d%d)(%d%d)(%d%d)(%d%d)$'
)
if year then
return string.format(
'%s-%s-%sT%s:%s:%s',
year, month, day, hour, minute, second
)
else
error('internal error in Module:Effective protection expiry; malformed expiry timestamp')
end
end
end
|