Help talk:User groups

From DoomWiki.org

Revision as of 22:59, 2 February 2015 by Quasar (talk | contribs) (Default FlaggedRevs settings)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

FlaggedRevs autopromotion

mw:Extension:FlaggedRevs defines the following as the default settings for autopromotion. Feel free to discuss suggested changes. I realize this came up before but it got lost in a sea of more important issues. <source lang="php">

  1. Define when users get automatically promoted to Editors. Set as false to disable.
  2. Once users meet these requirements they will be promoted, unless previously demoted.

$wgFlaggedRevsAutopromote = array(

       'days'                  => 60, # days since registration
       'edits'                 => 250, # total edit count
       'excludeLastDays'       => 1, # exclude the last X days of edits from edit counts
       'benchmarks'            => 15, # number of "spread out" edits
       'spacing'               => 3, # number of days between these edits (the "spread")
       // Either totalContentEdits reqs OR totalCheckedEdits requirements needed
       'totalContentEdits'     => 300, # edits to pages in $wgContentNamespaces
       'totalCheckedEdits'     => 200, # edits before the stable version of pages
       'uniqueContentPages'    => 14, # unique pages in $wgContentNamespaces edited
       'editComments'          => 50, # number of manual edit summaries used
       'userpageBytes'         => 0, # size of userpage (use 0 to not require a userpage)
       'neverBlocked'          => true, # username was never blocked before?
       'maxRevertedEditRatio'  => .03, # max fraction of edits reverted via "rollback"/"undo"

); </source> --Quasar (talk) 03:59, 3 February 2015 (UTC)