-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathextension.json
More file actions
66 lines (66 loc) · 1.78 KB
/
extension.json
File metadata and controls
66 lines (66 loc) · 1.78 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
61
62
63
64
65
66
{
"name": "Microsoft Teams Notifications",
"version": "0.01",
"author": "Greg Swallow",
"url": "https://github.com/gswallow/MSTeamsNotifications",
"description": "Sends Teams notifications for selected actions that have occurred in your MediaWiki sites.",
"type": "other",
"AutoloadClasses": {
"MSTeamsNotifications": "MSTeamsNotificationsCore.php"
},
"Hooks": {
"PageContentSaveComplete": [
[
"MSTeamsNotifications::teams_article_saved"
]
],
"PageContentInsertComplete": [
[
"MSTeamsNotifications::teams_article_inserted"
]
],
"ArticleDeleteComplete": [
[
"MSTeamsNotifications::teams_article_deleted"
]
],
"TitleMoveComplete": [
[
"MSTeamsNotifications::teams_article_moved"
]
],
"AddNewAccount": [
[
"MSTeamsNotifications::teams_new_user_account"
]
]
},
"config": {
"TeamsTimeZone": "UTC",
"TeamsIncomingWebhookUrl": "",
"TeamsFromName": "",
"TeamsSendMethod": "curl",
"TeamsIncludePageUrls": true,
"TeamsIgnoreMinorEdits": false,
"ExcludedPermission": "",
"TeamsExcludeNotificationsFrom": [],
"WikiUrl": "",
"WikiUrlEnding": "index.php?title=",
"WikiUrlEndingUserRights": "Special%3AUserRights&user=",
"WikiUrlEndingUserPage": "User:",
"WikiUrlEndingUserTalkPage": "User_talk:",
"WikiUrlEndingUserContributions": "Special:Contributions/",
"WikiUrlEndingEditArticle": "action=edit",
"WikiUrlEndingHistory": "action=history",
"WikiUrlEndingDiff": "diff=prev&oldid=",
"TeamsNotificationNewUser": true,
"TeamsNotificationAddedArticle": true,
"TeamsNotificationRemovedArticle": true,
"TeamsNotificationMovedArticle": true,
"TeamsNotificationEditedArticle": true,
"TeamsShowNewUserEmail": true,
"TeamsShowNewUserFullName": true,
"TeamsShowNewUserIP": true
},
"manifest_version": 1
}