From ac159f984addf28e646eea311aaa974860628481 Mon Sep 17 00:00:00 2001 From: Nick Bebout Date: Mon, 31 Jul 2017 16:26:13 +0000 Subject: [PATCH] Add protectors group to allow people to manage protected pages on MediaWiki --- roles/mediawiki/templates/LocalSettings.php.fp.j2 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/roles/mediawiki/templates/LocalSettings.php.fp.j2 b/roles/mediawiki/templates/LocalSettings.php.fp.j2 index 7adb72cbdd..fe9af63024 100644 --- a/roles/mediawiki/templates/LocalSettings.php.fp.j2 +++ b/roles/mediawiki/templates/LocalSettings.php.fp.j2 @@ -100,6 +100,9 @@ $wgGroupPermissions['pruners']['bigdelete'] = true; $wgGroupPermissions['pruners']['deletedhistory'] = true; $wgGroupPermissions['pruners']['undelete'] = true; +# Create a protectors group for people who need to protect/unprotect pages +$wgGroupPermissions['protectors']['protect'] = true; + ## The URL base path to the directory containing the wiki; ## defaults for all runtime URL paths are based off of this. #$wgScriptPath = "/wiki";