wfLoadExtension( 'DiscordRCFeed' );
$wgRCFeeds['discord'] = [
// Your Discord webhook URL here.
'url' => 'https://discord.com/api/webhooks/xxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'style' => 'embed',
'omit_log_types' => ['thanks', 'patrol', 'pagetranslation', 'move'],
'omit_bots' => true,
'omit_namespaces' => [
NS_USER,
NS_USER_TALK,
NS_PROJECT_TALK,
NS_FILE_TALK,
NS_MEDIAWIKI_TALK,
NS_TEMPLATE_TALK,
NS_HELP_TALK,
NS_CATEGORY_TALK,
],
];
only_
instead of omit_
?
wfLoadExtension( 'DiscordRCFeed' );
$wgRCFeeds['discord'] = [
// Your Discord webhook URL here.
'url' => 'https://discord.com/api/webhooks/xxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'style' => 'embed',
'only_log_types' => [RC_EDIT, RC_NEW],
'omit_bots' => true,
'only_namespaces' => [
NS_MAIN,
NS_CATEGORY,
],
];