Page MenuHomePhabricator

Change FlaggedRevs configuration on Russian Wikipedia
Closed, ResolvedPublic

Description

Please, make following changes for ruwiki:

  1. Add NS_CATEGORY to sightable namespaces list
  2. Create flag "rollback" with rollback permission
  3. Create "autoeditor" group with following permissions: autopatrolother, autoreview, autoconfirmed.

Version: unspecified
Severity: enhancement
See Also:
https://bugzilla.wikimedia.org/show_bug.cgi?id=37675

Details

Reference
bz15478

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 21 2014, 10:20 PM
bzimport set Reference to bz15478.
bzimport added a subscriber: Unknown Object (MLST).
  1. Add NS_CATEGORY to sightable namespaces list

done.

  1. Create flag "rollback" with rollback permission

"rollbacker" group created and made addable by sysops.

  1. Create "autoeditor" group with following permissions: autopatrolother,

autoreview, autoconfirmed.

I'm not sure I understand this one...

(In reply to comment #1)

  1. Create "autoeditor" group with following permissions: autopatrolother,

autoreview, autoconfirmed.

I'm not sure I understand this one...

$wgGroupPermissions['autoeditor']['autopatrolother'] = true;
$wgGroupPermissions['autoeditor']['autoreview'] = true;
$wgGroupPermissions['autoeditor']['autoconfirmed'] = true;
$wgAddGroups['sysop'][] = 'autoeditor';
$wgRemoveGroups['sysop'][] = 'autoeditor';

That's necessary for users who doesn't want to review anything but are trusted to have their edits automatically reviewed.

Oh, and set $wgGroupPermissions['autoconfirmed']['autopatrolother'] = false; (it was really unexpected behaviour, we supposed to use it to check images license, but with that config it has no sense)

Created group 'autoeditor'
Sysops can now add or remove in group 'autoeditor'.

I forgot to let sysop remove people from the group 'autoeditor'. Noticed
by VasilievVV