forked from mattermost/mattermost-plugin-zoom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.json
95 lines (95 loc) · 4.33 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"id": "zoom",
"name": "Zoom",
"description": "Zoom audio and video conferencing plugin for Mattermost.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-zoom",
"support_url": "https://github.com/mattermost/mattermost-plugin-zoom/issues",
"icon_path": "assets/profile.svg",
"min_server_version": "5.37.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"
},
"executable": ""
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "To set up this plugin you first need to create a Zoom App using a Zoom Administrator account. Visit the [documentation for configuration steps](https://mattermost.com/pl/mattermost-plugin-zoom).",
"footer": "",
"settings": [
{
"key": "ZoomURL",
"display_name": "Zoom URL:",
"type": "text",
"help_text": "The URL for a self-hosted private cloud or on-prem Zoom server. For example, https://yourzoom.com. Leave blank if you're using Zoom's vendor-hosted SaaS service.",
"placeholder": "https://zoom.us",
"default": null
},
{
"key": "ZoomAPIURL",
"display_name": "Zoom API URL:",
"type": "text",
"help_text": "The API URL for a self-hosted private cloud or on-prem Zoom server. For example, https://api.yourzoom.com/v2. Leave blank if you're using Zoom's vendor-hosted SaaS service.",
"placeholder": "https://api.zoom.us/v2",
"default": null
},
{
"key": "AccountLevelApp",
"display_name": "OAuth by Account Level App:",
"type": "bool",
"help_text": "When true, only an account administrator has to log in. The rest of the users will automatically use their Mattermost email to authenticate when starting meetings.",
"placeholder": "",
"default": false
},
{
"key": "OAuthClientID",
"display_name": "Zoom OAuth Client ID:",
"type": "text",
"help_text": "The client ID for the OAuth app registered with Zoom. Leave blank if not using OAuth.",
"placeholder": "",
"default": null
},
{
"key": "OAuthClientSecret",
"display_name": "Zoom OAuth Client Secret:",
"type": "text",
"help_text": "The client secret for the OAuth app registered with Zoom. Leave blank if not using OAuth.",
"placeholder": "",
"default": null
},
{
"key": "EncryptionKey",
"display_name": "At Rest Token Encryption Key:",
"type": "generated",
"help_text": "The AES encryption key used to encrypt stored access tokens.",
"regenerate_help_text": "Regenerates the encryption key for Zoom OAuth token. Regenerating the key invalidates your existing Zoom OAuth.",
"placeholder": "",
"default": null
},
{
"key": "WebhookSecret",
"display_name": "Webhook Secret:",
"type": "generated",
"help_text": "The secret used to authenticate the webhook to Mattermost.",
"regenerate_help_text": "Regenerates the secret for the webhook URL endpoint. Regenerating the secret invalidates your existing Zoom plugin.",
"placeholder": "",
"default": null
},
{
"key": "ZoomWebhookSecret",
"display_name": "Zoom Webhook Secret:",
"type": "text",
"help_text": "Secret Token taken from Zoom's webhook configuration page",
"regenerate_help_text": "",
"placeholder": "",
"default": null
}
]
}
}