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
This commit is contained in:
Tom Fifield 2016-09-09 10:46:16 -05:00 committed by Jeremy Stanley
parent d79c672d41
commit f5a6ac32a7
1 changed files with 3 additions and 0 deletions

View File

@ -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;