-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
extension.json
92 lines (92 loc) · 2.53 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": "IncidentReporting",
"author": [
"John Lewis",
"Universal Omega"
],
"url": "https://github.com/miraheze/IncidentReporting",
"version": "1.2.0",
"descriptionmsg": "incidentreporting-desc",
"license-name": "GPL-3.0-or-later",
"type": "specialpage",
"requires": {
"MediaWiki": ">= 1.38.0"
},
"AvailableRights": [
"viewincidents",
"editincidents"
],
"SpecialPages": {
"IncidentReports": "SpecialIncidentReports"
},
"LogActionsHandlers": {
"incidentreporting/modify": "LogFormatter"
},
"LogTypes": [
"incidentreporting"
],
"MessagesDirs": {
"IncidentReporting": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"IncidentReportingAliases": "includes/IncidentReportingAliases.php"
},
"AutoloadClasses": {
"IncidentReportingFormFactory": "includes/IncidentReportingFormFactory.php",
"IncidentReportingHooks": "includes/IncidentReportingHooks.php",
"IncidentReportingOOUIForm": "includes/IncidentReportingOOUIForm.php",
"IncidentReportingPager": "includes/IncidentReportingPager.php",
"SpecialIncidentReports": "includes/SpecialIncidentReports.php"
},
"ResourceModules": {
"ext.incidentreporting.oouiform": {
"scripts": "ext.incidentreporting.oouiform.ooui.js",
"targets": [ "desktop", "mobile" ],
"dependencies": [
"mediawiki.storage",
"oojs-ui-widgets"
]
},
"ext.incidentreporting.oouiform.styles": {
"targets": [ "desktop", "mobile" ],
"styles": "ext.incidentreporting.oouiform.ooui.less"
}
},
"ResourceFileModulePaths": {
"localBasePath": "modules",
"remoteExtPath": "IncidentReporting/modules"
},
"config": {
"IncidentReportingDatabase": {
"description": "Database name where all data is stored.",
"public": true,
"value": false
},
"IncidentReportingServices": {
"description": "Human readable list of service components with page URLs. Set to false for no link. Format: 'name' => 'url'.",
"public": true,
"value": []
},
"IncidentReportingInactiveServices": {
"description": "Same as $wgIncidentReportingServices but for inactive services. Services in this array won't appear when creating incident reports.",
"public": true,
"value": []
},
"IncidentReportingTaskUrl": {
"description": "Full url of task tracking software minus the task ID. e.g. https://issue-tracker.miraheze.org/",
"public": true,
"value": false
}
},
"Hooks": {
"LoadExtensionSchemaUpdates": [
"IncidentReportingHooks::onLoadExtensionSchemaUpdates"
]
},
"ConfigRegistry": {
"incidentreporting": "GlobalVarConfig::newInstance"
},
"manifest_version": 2
}