-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathextension.json
More file actions
60 lines (60 loc) · 2.46 KB
/
extension.json
File metadata and controls
60 lines (60 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "Slack Notifications",
"version": "1.15",
"author": "Aleksi Postari",
"url": "https://github.com/kulttuuri/slack_mediawiki",
"description": "Sends Slack notifications for selected actions that have occurred in your MediaWiki sites.",
"type": "other",
"AutoloadClasses": {
"SlackNotifications": "SlackNotificationsCore.php"
},
"Hooks": {
"PageSaveComplete": "SlackNotifications::slack_article_saved",
"ArticleDeleteComplete": "SlackNotifications::slack_article_deleted",
"TitleMoveComplete": "SlackNotifications::slack_article_moved",
"AddNewAccount": "SlackNotifications::slack_new_user_account",
"BlockIpComplete": "SlackNotifications::slack_user_blocked",
"UploadComplete": "SlackNotifications::slack_file_uploaded",
"ArticleProtectComplete": "SlackNotifications::slack_article_protected",
"UserGroupsChanged": "SlackNotifications::slack_user_groups_changed"
},
"config": {
"SlackIncomingWebhookUrl": "",
"SlackFromName": "",
"SlackRoomName": "",
"SlackSendMethod": "curl",
"SlackEmoji": "",
"SlackIncludePageUrls": true,
"SlackIncludeUserUrls": true,
"SlackIgnoreMinorEdits": false,
"SlackExcludedPermission": "",
"SlackExcludeNotificationsFrom": [],
"SlackIncludeNotificationsFrom": [],
"SlackNotificationWikiUrl": "",
"SlackNotificationWikiUrlEnding": "index.php?title=",
"SlackNotificationWikiUrlEndingUserRights": "Special%3AUserRights&user=",
"SlackNotificationWikiUrlEndingBlockUser": "Special:Block/",
"SlackNotificationWikiUrlEndingUserPage": "User:",
"SlackNotificationWikiUrlEndingUserTalkPage": "User_talk:",
"SlackNotificationWikiUrlEndingUserContributions": "Special:Contributions/",
"SlackNotificationWikiUrlEndingBlockList": "Special:BlockList",
"SlackNotificationWikiUrlEndingEditArticle": "action=edit",
"SlackNotificationWikiUrlEndingDeleteArticle": "action=delete",
"SlackNotificationWikiUrlEndingHistory": "action=history",
"SlackNotificationWikiUrlEndingDiff": "diff=prev&oldid=",
"SlackNotificationNewUser": true,
"SlackNotificationBlockedUser": true,
"SlackNotificationAddedArticle": true,
"SlackNotificationRemovedArticle": true,
"SlackNotificationMovedArticle": true,
"SlackNotificationEditedArticle": true,
"SlackNotificationFileUpload": true,
"SlackNotificationUserGroupsChanged": true,
"SlackNotificationProtectedArticle": true,
"SlackIncludeDiffSize": true,
"SlackShowNewUserEmail": true,
"SlackShowNewUserFullName": true,
"SlackShowNewUserIP": true
},
"manifest_version": 1
}