Page MenuHomePhabricator

Remove English Wikibooks deprecated groups' members
Closed, ResolvedPublic

Description

Author: aaron.adrignola

Description:
Bug 24304 reconfigured the user groups available at English Wikibooks. Three were removed: "reviewer", "patroller", and "rollbacker". The members of these former groups need to have the underlying values placing them in the groups removed via an SQL statement as bureaucrats can no longer remove them. The below links show the people affected.

http://en.wikibooks.org/w/index.php?title=Special:ListUsers&group=reviewer
http://en.wikibooks.org/w/index.php?title=Special:ListUsers&group=patroller
http://en.wikibooks.org/w/index.php?title=Special:ListUsers&group=rollbacker

The "reviewer" tag should not be confused with the "editor" tag which was changed to display via the interface text as "Reviewer". This leads to the confusing situation where people appear to be listed in a "reviewer" group twice.


Version: unspecified
Severity: enhancement
URL: see initial comment

Details

Reference
bz24816

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 21 2014, 11:11 PM
bzimport set Reference to bz24816.
bzimport added a subscriber: Unknown Object (MLST).

jeluf wrote:

mysql> delete from user_groups where ug_group in ( 'reviewer', 'patroller', 'rollbacker' );
Query OK, 24 rows affected (0.00 sec)

mysql> select distinct ug_group from user_groups;
+----------------+

ug_group

+----------------+

bot
bureaucrat
editor
ipblock-exempt
sysop
transwiki
uploader

+----------------+
7 rows in set (0.00 sec)

aaron.adrignola wrote:

Thank you so much for your help JeLuF.