-
Notifications
You must be signed in to change notification settings - Fork 15
/
extension.json
92 lines (92 loc) · 2.62 KB
/
extension.json
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"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
}