-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
64 lines (63 loc) · 1.52 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
{
"name": "ChatbotRagContent",
"author": [
"Dror S. [FFS] ([https://www.kolzchut.org.il Kol-Zchut])"
],
"url": "https://github.com/kolzchut/mediawiki-extensions-ChatbotRagContent",
"descriptionmsg": "chatbotragcontent-desc",
"license-name": "GPL-2.0-or-later",
"type": "other",
"requires": {
"MediaWiki": ">= 1.35.0"
},
"version": "0.0.2",
"AutoloadNamespaces": {
"MediaWiki\\Extension\\ChatbotRagContent\\": "src/"
},
"JobClasses": {
"ragUpdate": "MediaWiki\\Extension\\ChatbotRagContent\\RagUpdateJob"
},
"config": {
"ChatbotRagContentPingURL": {
"description": "URL to ping when content updates.",
"value": ""
},
"ChatbotRagContentNamespaces": {
"description": "Namespaces to notify about changes in",
"value": [
0
]
},
"ChatbotRagContentArticleTypeBlocklist": {
"description": "Array of article types not included in content updates",
"value": []
}
},
"HookHandlers": {
"ChatbotRagContentHooks": {
"class": "MediaWiki\\Extension\\ChatbotRagContent\\Hooks"
}
},
"Hooks": {
"RevisionDataUpdates": "ChatbotRagContentHooks",
"PageDeletionDataUpdates": "ChatbotRagContentHooks",
"PageMoveComplete": "ChatbotRagContentHooks"
},
"RestRoutes": [
{
"path": "/cbragcontent/v0/page_id/{identifier}",
"class": "MediaWiki\\Extension\\ChatbotRagContent\\RestApiGetContent",
"services": [
"PermissionManager",
"RevisionRenderer"
]
}
],
"load_composer_autoloader": true,
"MessagesDirs": {
"ChatbotRagContent": [
"i18n"
]
},
"manifest_version": 2
}