generated from Brightscout/mattermost-plugin-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
plugin.json
79 lines (79 loc) · 3.35 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
{
"id": "mattermost-plugin-servicenow-virtual-agent",
"name": "ServiceNow Virtual Agent",
"description": "This plugin is for integrating Mattermost with ServiceNow Virtual Agent.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-servicenow-virtual-agent",
"support_url": "https://github.com/mattermost/mattermost-plugin-servicenow-virtual-agent/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-servicenow-virtual-agent/releases/tag/v2.1.2",
"icon_path": "assets/icon.svg",
"version": "2.1.2",
"min_server_version": "5.37.0",
"server": {
"executables": {
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"darwin-arm64": "server/dist/plugin-darwin-arm64",
"linux-amd64": "server/dist/plugin-linux-amd64",
"linux-arm64": "server/dist/plugin-linux-arm64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
},
"executable": ""
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "",
"footer": "",
"settings": [
{
"key": "ServiceNowURL",
"display_name": "ServiceNow URL:",
"type": "text",
"help_text": "The base URL for using the plugin with a ServiceNow server.",
"placeholder": "https://servicenow.com",
"default": null
},
{
"key": "ServiceNowOAuthClientID",
"display_name": "ServiceNow OAuth Client ID:",
"type": "text",
"help_text": "The client ID for the OAuth app registered with ServiceNow.",
"placeholder": "",
"default": null
},
{
"key": "ServiceNowOAuthClientSecret",
"display_name": "ServiceNow OAuth Client Secret:",
"type": "text",
"help_text": "The client secret for the OAuth app registered with ServiceNow.",
"placeholder": "",
"default": null
},
{
"key": "EncryptionSecret",
"display_name": "Encryption Secret:",
"type": "generated",
"help_text": "The secret key used to encrypt and decrpyt OAuth token.",
"placeholder": "",
"default": ""
},
{
"key": "WebhookSecret",
"display_name": "ServiceNow Webhook Secret:",
"type": "generated",
"help_text": "The webhook secret used by the ServiceNow API calls to Mattermost for sending message response.",
"regenerate_help_text": "Regenerates the secret for ServiceNow Virtual Agent Plugin. Regenerating this key invalidates any existing key.",
"placeholder": "",
"default": ""
},
{
"key": "ChannelCacheSize",
"display_name": "DM Channel Cache Size:",
"type": "number",
"help_text": "The size of the cache that is used to store DM channel IDs. This value represents no. of entries in the cache, not the memory it will take.",
"placeholder": "",
"default": 10000
}
]
}
}