forked from mattermost/mattermost-plugin-zoom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
91 lines (91 loc) · 4.29 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
{
"id": "zoom",
"name": "Zoom",
"description": "Zoom audio and video conferencing plugin for Mattermost 5.2+.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-zoom",
"support_url": "https://github.com/mattermost/mattermost-plugin-zoom/issues",
"icon_path": "assets/profile.svg",
"version": "1.3.1",
"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": {
"settings": [
{
"key": "ZoomURL",
"display_name": "Zoom URL",
"type": "text",
"help_text": "The URL for a self-hosted private cloud or on-premise Zoom server. For example, https://yourzoom.com. Leave blank if you're using Zoom's vendor-hosted SaaS service.",
"placeholder": "https://zoom.us"
},
{
"key": "ZoomAPIURL",
"display_name": "Zoom API URL",
"type": "text",
"help_text": "The API URL for a self-hosted private cloud or on-premise 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"
},
{
"key": "EnableOAuth",
"display_name": "Enable OAuth",
"type": "bool",
"help_text": "When true, OAuth will be used as authentication means with Zoom. \n Please enable only either one of OAuth based or Password base authentication.",
"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"
},
{
"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"
},
{
"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."
},
{
"key": "EnableLegacyAuth",
"display_name": "Enable Password based authentication",
"type": "bool",
"help_text": "When true, user's email and password will be used to authenticate with Zoom. \n Please enable only either one of OAuth based or Password base authentication.",
"default": true
},
{
"key": "APIKey",
"display_name": "API Key",
"type": "text",
"help_text": "The API Key generated by Zoom, used to create meetings and pull user data."
},
{
"key": "APISecret",
"display_name": "API Secret",
"type": "text",
"help_text": "The API Secret generated by Zoom for your API key."
},
{
"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."
}
],
"footer": "Use this webhook URL to set up the Zoom plugin. See [documentation](https://about.mattermost.com/default-zoom-documentation) to learn more.\n\n```https://SITEURL/plugins/zoom/webhook?secret=WEBHOOKSECRET```"
}
}