-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.json
More file actions
63 lines (63 loc) · 2.41 KB
/
Copy pathplugin.json
File metadata and controls
63 lines (63 loc) · 2.41 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
{
"id": "com.mattermost.academy",
"name": "Mattermost Academy",
"description": "Interactive learning guides for Mattermost end-users and admins.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-academy",
"support_url": "https://github.com/mattermost/mattermost-plugin-academy/issues",
"icon_path": "assets/plugin-icon.png",
"min_server_version": "10.3.0",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"linux-arm64": "server/dist/plugin-linux-arm64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"darwin-arm64": "server/dist/plugin-darwin-arm64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "Interactive learning guides for Mattermost end-users and admins.",
"footer": "",
"sections": [
{
"key": "ProfileBadges",
"custom": true,
"fallback": true,
"settings": [
{
"key": "EnableProfileBadges",
"display_name": "Show Academy badges on profiles:",
"type": "bool",
"help_text": "When enabled, completed guide badges appear on user profile popovers.",
"default": true
}
]
},
{
"key": "UserAccess",
"title": "Access",
"subtitle": "Control who can use Academy and which guides are available. Users who are not allowed will not see Academy in the product interface.",
"custom": true,
"fallback": true,
"settings": [
{
"key": "UserAccessConfig",
"type": "custom",
"display_name": "Access:",
"help_text": ""
}
]
},
{
"key": "GuideCompletions",
"title": "Guide completions",
"subtitle": "See how many users finish Academy guides over time, filter by guide, and export results",
"custom": true,
"settings": []
}
]
}
}