Page MenuHomePhabricator

Activating "patrol" on Italian Wiktionary
Closed, ResolvedPublic

Description

Hello. In it.wiktionary we need to patrol edits. So, can you activate the
"patroller" With these options recommended by VasilievVV

  1. 'wgEnableRCPatrol' => true
  2. 'groupsOverride2' => array(

'itwiktionary' =>
'patroller' => array(

'patrol' => true,
'autopatrol' => true,

) ) )

  1. 'wgAddGroups' => array(

'itwiktionary' =>
'sysop' => array( 'patroller' ),
) )
'wgRemoveGroups' => array(
'itwiktionary' =>
'sysop' => array( 'patroller' ),
) )

( https://bugzilla.wikimedia.org/show_bug.cgi?id=12939#c3 )


Version: unspecified
Severity: normal
URL: http://it.wiktionary.org/wiki/Wikizionario:Bar#Patroller

Details

Reference
bz13035

Event Timeline

bzimport raised the priority of this task from to Unbreak Now!.Nov 21 2014, 10:07 PM
bzimport set Reference to bz13035.
bzimport added a subscriber: Unknown Object (MLST).
  • Bug 12939 has been marked as a duplicate of this bug. ***

jeluf wrote:

Done.

  1. There's no such setting. wgUseRCPatrol was already set to true due to Bug 11424
  2. groupOverrides2 is only being used for the defaults setting. For config settings, groupOverrides has to be used: 'itwiktionary' => array( 'user' => array( 'upload' => false ), 'autoconfirmed' => array( 'patrol' => true, 'upload' => false ), 'sysop' => array( 'upload' => true ), 'patroller' => array( 'patrol' => true, 'autopatrol' => true, ), ),
  3. Done: 'wgAddGroups' => array( 'itwiktionary' => array(
		'sysop' => array( 'patroller' ),

),

),
'wgRemoveGroups' => array(
  'itwiktionary' => array(
  	'sysop' => array( 'patroller' ),
  ),
),