Rate limit editors in MediaWiki
Find a file
2023-03-06 21:30:46 -06:00
i18n turkish translation 2022-07-26 20:15:29 +03:00
src Merge pull request #13 from InternationalScratchWiki/REL1_39 2023-03-06 21:30:46 -06:00
extension.json use new hook system (closes #9) 2022-12-01 17:54:29 +00:00
README.md added description and readme 2022-07-18 18:19:29 +01:00

Rate Limiter

Limit the rate of edits and moves for users

Config

  • $wgRateLimiterRestrictions - the restrictions applied to each user group, in the following format:
    [
    	'limited' => true, // set to true to apply a limit, false to explicitly remove any limits
    	'limit' => 1, // the amount of edits and moves allowed in the interval
    	'interval' => 600, // the interval (in seconds)
    	'priority' => 1 // the priority (higher priority takes precedence over lower priority if the user is in multiple groups with different restrictions)
    ]