From f5a6ac32a71576108bba2571dd96e025b59d69ca Mon Sep 17 00:00:00 2001 From: Tom Fifield Date: Fri, 9 Sep 2016 10:46:16 -0500 Subject: [PATCH] Skip CAPTCHA for autopatrol users autopatrol users have been human-verified to be legit. Therefore, they don't need to go through the pain of CAPTCHA This patch adds the necessary permissions. Change-Id: I501eae00f471ee13525073d39c8e51a7ccb67fdc --- templates/Settings.php.erb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/Settings.php.erb b/templates/Settings.php.erb index 03907db..729e4ac 100644 --- a/templates/Settings.php.erb +++ b/templates/Settings.php.erb @@ -161,6 +161,9 @@ $wgGroupPermissions['suppress']['suppressionlog'] = true; # Allow known-good users to be listed in an 'autopatrol' group so their # edits are automatically marked as 'patrolled' $wgGroupPermissions['autopatrol']['autopatrol'] = true; +# Autopatrol users are legit, so don't need a CAPTCHA +$wgGroupPermissions['autopatrol']['skipcaptcha'] = true; + # Useful for debugging purposes, and doesn't expose very sensitive info $wgShowExceptionDetails = true;