Page MenuHomePhabricator

Flood flag for foundationwiki
Closed, ResolvedPublic

Description

Author: bugs

Description:
We frequently have to make a lot of repetitive edits to foundationwiki and need to assign the "bot" flag to users. It would probably be a lot easier if admins didn't have to wait for a bureaucrat to add and remove the +bot, so Philippe and I thought it would be a good idea for us to get the "flood flag" enabled on Foundationwiki. Can you help? :-)


Version: unspecified
Severity: enhancement
URL: http://meta.wikimedia.org/wiki/Meta:Flood_flag

Details

Reference
bz26357

Event Timeline

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

Casey didn't respond to my ping on IRC so I'll put this here: could you confirm sysops should be able to add/remove the flood flag?

Provisional diff:

Index: wmf-config/InitialiseSettings.php

  • wmf-config/InitialiseSettings.php (revision 1402)

+++ wmf-config/InitialiseSettings.php (working copy)
@@ -5499,6 +5499,7 @@
// ),

'+foundationwiki' => array(
        'user' => array( 'editinterface' => true ),

+ 'flood' => array( 'bot' => true ),

   ),
'frwiki' => array(
  'user' => array( 'move' => false ), // requested by hashar

@@ -6004,7 +6005,7 @@

    'sysop' => array( 'rollbacker' ),
),
'+foundationwiki' => array(
  • 'sysop' => array( 'inactive' ),

+ 'sysop' => array( 'inactive', 'flood' ),

   'bureaucrat' => array( 'bot', 'sysop', 'bureaucrat', 'import', 'transwiki', 'inactive' ),
),
'+frwiki' => array(

@@ -6277,7 +6278,7 @@

   'bureaucrat' => array( 'sysop', 'bureaucrat' ),
),
'+foundationwiki' => array(
  • 'sysop' => array( 'inactive', 'confirmed' ),

+ 'sysop' => array( 'inactive', 'confirmed', 'flood' ),

   'bureaucrat' => array( 'bot', 'sysop', 'bureaucrat', 'import', 'transwiki', 'inactive', 'confirmed' ),
),
'+frwiki' => array(

That looks correct to me. Sysops should be able to flag themselves as a bot (flood) and be able to de-bot themselves.