-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
60 lines (60 loc) · 1.81 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
{
"name": "AMIV Authentication",
"version": "0.1.0",
"author": [
"Sandro Lutz"
],
"url": "https://gitlab.ethz.ch/amiv/mediawiki-extensions-amiv-authentication",
"descriptionmsg": "amivauthentication-desc",
"license-name": "AGPLv3",
"type": "other",
"requires": {
"MediaWiki": ">= 1.27.0"
},
"MessagesDirs": {
"AmivAuthentication": [
"i18n"
]
},
"AutoloadClasses": {
"ApiUtil": "ApiUtil.php",
"ApiSync": "ApiSync.php",
"AmivAuthenticationDB": "AmivAuthentication.db.php",
"AmivAuthenticationHooks": "AmivAuthentication.hooks.php",
"AmivAuthenticationSpecial": "AmivAuthentication.special.php",
"AmivAuthenticationProvider": "AmivAuthentication.provider.php"
},
"AuthManagerAutoConfig": {
"primaryauth": {
"AmivAuthenticationProvider": {
"class": "AmivAuthenticationProvider"
}
}
},
"Hooks": {
"UserLogout": [
"AmivAuthenticationHooks::onUserLogout"
],
"UserLoginForm": [
"AmivAuthenticationHooks::onUserLoginForm"
],
"LoadExtensionSchemaUpdates": [
"AmivAuthenticationHooks::onLoadExtensionSchemaUpdates"
]
},
"SpecialPages": {
"AmivAuthentication": "AmivAuthenticationSpecial"
},
"config": {
"AmivAuthenticationDisablePasswordReset": true,
"AmivAuthenticationOAuthAutoRedirect": false,
"AmivAuthenticationOAuthRedirectProtocol": "https",
"AmivAuthenticationOAuthClientId": null,
"AmivAuthenticationApiUrl": null,
"AmivAuthenticationApiKey": null,
"AmivAuthenticationUserGroups": ["Wiki"],
"AmivAuthenticationSysopGroups": ["admin"],
"AmivAuthenticationAdditionalGroups": ["Vorstand"]
},
"manifest_version": 1
}