generated from mattermost/mattermost-plugin-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.json
51 lines (51 loc) · 1.79 KB
/
plugin.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
{
"id": "com.mattermost.mattermost-grumble-plugin",
"name": "Mattermost Grumble Plugin",
"description": "This plugin enables voice conversation through mumble.",
"version": "0.1.0",
"min_server_version": "5.12.0",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "",
"footer": "",
"settings": [
{
"key": "Port",
"display_name": "Grumble server port",
"type": "number",
"help_text": "The port that the grumble server will run in",
"default": 64738
},
{
"key": "WebPort",
"display_name": "Grumble web server port",
"type": "number",
"help_text": "The port that the grumble websockets server will run in",
"default": 8090
},
{
"key": "CertPath",
"display_name": "The TLS certificate file path",
"type": "text",
"help_text": "If set, it will be used as the TLS certificate instead of the grumble autogenerated one",
"placeholder": "Optional"
},
{
"key": "KeyPath",
"display_name": "The TLS key file path",
"type": "text",
"help_text": "If set, it will be used as the TLS certificate key instead of the grumble autogenerated one",
"placeholder": "Optional"
}
]
}
}