forked from lucamauri/ActivityWiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
73 lines (65 loc) · 1.77 KB
/
extension.json
File metadata and controls
73 lines (65 loc) · 1.77 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
{
"name": "ActivityWiki",
"version": "1.0.0",
"author": ["Luca Mauri"],
"url": "https://github.com/lucamauri/ActivityWiki",
"descriptionmsg": "activitywiki-desc",
"license-name": "GPL-2.0-or-later",
"type": "api",
"manifest_version": 2,
"requires": {
"MediaWiki": ">= 1.35.0"
},
"config": {
"ActivityPubEnabled": {
"value": true,
"description": "Enable ActivityPub support in the wiki"
},
"ActivityPubActorName": {
"value": "Wiki",
"description": "The name used for the wiki actor in the Fediverse"
},
"ActivityPubActorIcon": {
"value": "/logo.png",
"description": "URL to the wiki icon/logo for ActivityPub profile"
},
"ActivityPubEnableUserActors": {
"value": false,
"description": "Enable per-user ActivityPub actors (Phase 3+)"
},
"ActivityPubExcludedNamespaces": {
"value": [],
"description": "Array of namespace IDs to exclude from ActivityPub federation"
},
"ActivityPubExcludeBots": {
"value": true,
"description": "Exclude bot edits from ActivityPub activities"
},
"ActivityPubExcludeMinor": {
"value": false,
"description": "Exclude minor edits from ActivityPub activities"
},
"ActivityPubDebugLevel": {
"value": 0,
"description": "Debug log level: 0=errors only, 1=verbose"
}
},
"MessagesDirs": {
"ActivityWiki": "i18n"
},
"DatabaseSchemas": {
"activity_log": "db/activity_log.json"
},
"HookHandlers": {
"PageSaveComplete": {
"class": "MediaWiki\\Extension\\ActivityWiki\\Hooks"
}
},
"Hooks": {
"PageSaveComplete": "PageSaveComplete"
},
"RestModuleFiles": ["src/Rest/routes.json"],
"AutoloadNamespaces": {
"MediaWiki\\Extension\\ActivityWiki\\": "src/"
}
}