-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
48 lines (48 loc) · 1.92 KB
/
plugin.json
File metadata and controls
48 lines (48 loc) · 1.92 KB
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
{
"id": "com.mattermost.channel-automation",
"name": "Channel Automation",
"description": "A Mattermost plugin for channel automation.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-channel-automation",
"support_url": "https://github.com/mattermost/mattermost-plugin-channel-automation/issues",
"icon_path": "assets/icon.svg",
"min_server_version": "6.2.1",
"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"
}
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "",
"footer": "",
"settings": [
{
"key": "MaxConcurrentFlowsLimit",
"display_name": "Max Concurrent Flows",
"type": "number",
"default": 4,
"help_text": "Maximum number of flow executions that can run concurrently per plugin instance. Requires plugin restart to take effect."
},
{
"key": "MaxFlowsPerChannelLimit",
"display_name": "Max Flows Per Channel",
"type": "number",
"default": 0,
"help_text": "Maximum number of flows that can target a single channel. Set to 0 or leave empty for unlimited."
},
{
"key": "EnableUI",
"display_name": "Enable UI",
"type": "bool",
"default": false,
"help_text": "When enabled, the Channel Automation product menu will be visible in the webapp. Changes require a page reload to take effect."
}
]
}
}