-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.json
More file actions
45 lines (45 loc) · 1.6 KB
/
plugin.json
File metadata and controls
45 lines (45 loc) · 1.6 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
{
"id": "com.github.moussetc.mattermost.plugin.spoiler",
"name": "Spoiler Command",
"description": "This plugin defines a /spoiler command.",
"version": "4.1.0",
"homepage_url":"https://github.com/moussetc/mattermost-plugin-spoiler/",
"support_url":"https://github.com/moussetc/mattermost-plugin-spoiler/issues",
"release_notes_url": "https://github.com/moussetc/mattermost-plugin-spoiler/releases/tag/v3.1.0",
"icon_path":"assets/icon.svg",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
},
"executable": "server/dist/plugin-freebsd-amd64"
},
"min_server_version": "6.5.0",
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "",
"footer": "",
"settings": [
{
"key": "SpoilerMode",
"display_name": "Display mode for spoiler messages",
"help_text": "This setting will not affect native apps (Android,...).",
"type": "radio",
"default": "button",
"options": [
{
"value": "button",
"display_name": "Spoiler button"
},
{
"value": "redacted",
"display_name": "Highlight ('redacted' look)"
}
]
}
]
}
}