-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
113 lines (113 loc) · 2.72 KB
/
Copy pathextension.json
File metadata and controls
113 lines (113 loc) · 2.72 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "TelepediaCore",
"version": "1.0.0",
"author": [
"Telepedia Ltd."
],
"url": "https://github.com/Telepedia/TelepediaCore",
"descriptionmsg": "telepediacore-desc",
"license-name": "Apache-2.0",
"type": "other",
"requires": {
"MediaWiki": ">= 1.43"
},
"MessagesDirs": {
"TelepediaCore": [
"i18n"
]
},
"AutoloadNamespaces": {
"Telepedia\\Extensions\\TelepediaCore\\": "includes/"
},
"HookHandlers": {
"telepedia": {
"class": "Telepedia\\Extensions\\TelepediaCore\\Hooks\\TelepediaHooks",
"services": [
"HttpRequestFactory"
]
}
},
"Hooks": {
"CreateWikiNewWiki": "telepedia",
"RightToBeForgottenComplete": "telepedia",
"GetLocalURL::Internal": "telepedia",
"InitializeArticleMaybeRedirect": "telepedia",
"HtmlPageLinkRendererEnd": "telepedia",
"MessageCacheFetchOverrides": "telepedia"
},
"ConfigRegistry": {
"TelepediaCore": "MediaWiki\\Config\\GlobalVarConfig::newInstance"
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "TelepediaCore"
},
"config": {
"DiscordCreateWikiWebhookUrl": {
"description": "String. Webhook to send events for when a wiki is created.",
"value": null
},
"RTBFJiraWebhook": {
"description": "String. Jira Webhook url to POST request to be forgotten events to.",
"value": null
},
"RTBFJiraAccessToken": {
"description": "String. Jira access token to authenticate with the Jira API",
"value": null
},
"ArtemisHost": {
"description": "String. Host IP of the Apache Artemis Server",
"value": null
},
"ArtemisPort": {
"description": "String. Port of the Apache Artemis Server",
"value": null
},
"ArtemisUsername": {
"description": "String. Username for connecting to Apache Artemis",
"value": null
},
"ArtemisPassword": {
"description": "String. Password for connecting to Apache Artemis",
"value": null
}
},
"SpecialPages": {
"Renameuser": {
"class": "Telepedia\\Extensions\\TelepediaCore\\Specials\\SpecialRenameUser",
"services": [
"ConnectionProvider",
"PermissionManager",
"TitleFactory",
"UserFactory",
"UserNamePrefixSearch",
"UserNameUtils",
"RenameUserService"
]
}
},
"ServiceWiringFiles": [
"includes/ServiceWiring.php"
],
"JobClasses": {
"CrossWikiRenameUserJob": {
"class": "Telepedia\\Extensions\\TelepediaCore\\RenameUser\\CrossWikiRenameUserJob",
"services": [],
"needsPage": false
}
},
"APIListModules": {
"allwikis": {
"class": "Telepedia\\Extensions\\TelepediaCore\\API\\AllWikisHandler",
"services": [
"WikiDataService",
"ConfigCentre.ConfigCentreVariableService"
]
}
},
"ServiceWiringFiles": [
"includes/ServiceWiring.php"
],
"load_composer_autoloader": true,
"manifest_version": 2
}