Wiki: zh.wikipedia.org
Consensus Discussion: Discussion Link
Summary of consensus discussion: Users have reached a consensus on introducing the CampaignEvents extension to zhwp.
Expected Outcome: The CampaignEvents extension is enabled on zh.wikipedia
Steps:
- Add zhwiki to wmgUseCampaignEvents in wmf-config/InitialiseSettings.php
- Create the event-organizer user group, assign the standard user rights, make it editable by sysops. Remove those rights from the user group. (wmf-config/core-Permissions.php)
// groupOverrides ' zhwiki' => [ 'event-organizer' => [ // T373821 'campaignevents-enable-registration' => true, 'campaignevents-organize-events' => true, 'campaignevents-email-participants' => true, ], 'user' => [ 'campaignevents-enable-registration' => false, // T373821 'campaignevents-organize-events' => false, // T373821 'campaignevents-email-participants' => false, // T373821 ], ], // wgAddGroups ' zhwiki' => [ 'sysop' => [ 'event-organizer', // T373821 ], ], // wgRemoveGroups ' zhwiki' => [ 'sysop' => [ 'event-organizer', // T373821 ], ],