-
Notifications
You must be signed in to change notification settings - Fork 11
/
plugin.json
37 lines (37 loc) · 1.42 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
{
"id": "mattermost-file-list",
"name": "File list",
"description": "Adds a file list to each channel. (Button in top toolbar)",
"version": "0.9.0",
"min_server_version": "5.16.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": "TeamFilesEnabled",
"display_name": "Enable list of all files in the team",
"type": "bool"
},
{
"key": "AdminTeamFilesEnabled",
"display_name": "For admins enable a list of all files in the team, even from channels where the admin is not a member",
"type": "bool"
},
{
"key": "CaseInsensitiveEnabled",
"display_name": "Enable \"Case Insensitive\" checkbox in search dialog.",
"type": "bool",
"help_text": "Actually not required in default Mattermost config as you actually can't perform a case sensitive search due to database collation. So turn it on only if your file storage actually supports case sensitive searches."
}
]
}
}