Module:Effective protection level: Difference between revisions
add user JSON subpage detection - see Tech News: 2018-14
w>MarcoAurelio m (Protected "Module:Effective protection level": High-risk Lua module ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))) |
(add user JSON subpage detection - see Tech News: 2018-14) |
||
Line 28: | Line 28: | ||
if title.namespace == 8 then -- MediaWiki namespace | if title.namespace == 8 then -- MediaWiki namespace | ||
return 'sysop' | return 'sysop' | ||
elseif title.namespace == 2 and title.isSubpage and ( title.contentModel == 'javascript' or title.contentModel == 'css' ) then -- user JS or | elseif title.namespace == 2 and title.isSubpage and ( title.contentModel == 'javascript' or title.contentModel == 'css' or title.contentModel == 'json' ) then -- user JS, CSS or JSON page | ||
return 'sysop' | return 'sysop' | ||
end | end |