-
Notifications
You must be signed in to change notification settings - Fork 1
/
extension.json
63 lines (63 loc) · 1.76 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
{
"name": "Upload2Commons",
"version": "0.1.0",
"author": [
"Antoine Lamielle"
],
"url": "https://www.mediawiki.org/wiki/Extension:Upload2Commons",
"namemsg": "upload2Commons",
"descriptionmsg": "upload2Commons-desc",
"license-name": "GPL-2.0+",
"type": "other",
"manifest_version": 1,
"config": {
"Upload2CommonsApiUrl": "http://localhost"
},
"MessagesDirs": {
"Upload2Commons": [
"i18n"
]
},
"GroupPermissions": {
"*": {
"remoteuploadown": false,
"remoteupload": false
},
"user": {
"remoteuploadown": true,
"remoteupload": true
},
"bot": {
"remoteuploadown": true,
"remoteupload": true
},
"sysop": {
"remoteuploadown": true,
"remoteupload": true
}
},
"AvailableRights": [
"remoteuploadown",
"remoteupload"
],
"AutoloadNamespaces": {
"Upload2Commons\\": "includes/"
},
"AutoloadClasses": {
"Upload2Commons\\OAuthRequest": "includes/OAuthRequest.php",
"Upload2Commons\\ApiUpload2Commons": "includes/ApiUpload2Commons.php",
"Upload2Commons\\ApiPost2Commons": "includes/ApiPost2Commons.php",
"Upload2Commons\\RemoteUploadLogFormatter": "includes/RemoteUploadLogFormatter.php"
},
"APIModules": {
"upload-to-commons": "Upload2Commons\\ApiUpload2Commons",
"post-to-commons": "Upload2Commons\\ApiPost2Commons"
},
"LogTypes": [
"remoteupload"
],
"LogActionsHandlers": {
"remoteupload/file": "Upload2Commons\\RemoteUploadLogFormatter",
"remoteupload/stashedfile": "Upload2Commons\\RemoteUploadLogFormatter"
}
}