-
Notifications
You must be signed in to change notification settings - Fork 19
/
plugin.json
41 lines (41 loc) · 1.43 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
{
"id": "com.mattermost.webex",
"name": "Webex",
"description": "Webex audio and video conferencing plugin for Mattermost.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-webex",
"support_url": "https://github.com/mattermost/mattermost-plugin-webex/issues",
"icon_path": "assets/icon.svg",
"min_server_version": "5.11.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"
},
"executable": ""
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "",
"footer": "",
"settings": [
{
"key": "SiteHost",
"display_name": "Webex Site Hostname:",
"type": "text",
"help_text": "The hostname for your team's Webex site. For example: teamsite.webex.com.",
"placeholder": "teamsite.webex.com",
"default": null
},
{
"key": "UrlConversion",
"display_name": "Convert Webex URLs:",
"type": "bool",
"help_text": "Enable or disable the conversion of URL: replace /meet/ by /join/ or /start/.",
"default": true
}
]
}
}