generated from mattermost/mattermost-plugin-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
plugin.json
42 lines (42 loc) · 1.86 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
{
"id": "com.mattermost.plugin-channel-export",
"name": "Channel Export",
"description": "This plugin allows channel export into a human readable format.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-channel-export/",
"support_url": "https://github.com/mattermost/mattermost-plugin-channel-export/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-channel-export/releases/tag/v1.0.0",
"version": "1.2.1",
"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"
}
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "",
"footer": "",
"settings": [
{
"key": "EnableAdminRestrictions",
"display_name": "Enable Admin Restrictions",
"type": "bool",
"help_text": "Restricts the exporting of channels to system administrators or channel administrators",
"default": false
},
{
"key": "MaxFileSize",
"display_name": "Maximum size of channel export file in bytes",
"type": "number",
"help_text": "Determines the maximum size of the channel export file when using the slash command. A value of 0 will use the [FileSettings.MaxFileSize](https://docs.mattermost.com/configure/environment-configuration-settings.html#maximum-file-size) from Mattermost server.",
"default": 0
}
]
}
}