-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathplugin.json
46 lines (46 loc) · 2.07 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
{
"id": "com.mattermost.plugin-legal-hold",
"name": "Legal Hold Plugin",
"description": "This plugin adds Legal Hold functionality to Mattermost.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-legal-hold",
"support_url": "https://github.com/mattermost/mattermost-plugin-legal-hold/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-legal-hold/releases/tag/v1.0.1",
"icon_path": "assets/starter-template-icon.svg",
"version": "1.0.2",
"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": "This feature is intended to be a tool to assist in managing legal holds at your organization. The ultimate responsibility for the completeness and accuracy of data in compliance with legal requirements, including any data retained or omitted in relation to a legal proceeding, rests solely with the user. Mattermost software, materials, and information provided by Mattermost are not intended, and should not be taken, as legal advice. To learn more about how to configure legal hold for your Mattermost server, visit our documentation: https://mattermost.com/pl/legal-hold-documentation",
"footer": "",
"settings": [
{
"key": "TimeOfDay",
"display_name": "Time of day:",
"type": "text",
"help_text": "Time of day to run the Legal Hold task, in the form 'HH:MM ±HHMM' (e.g. '3:00am -0700'). Use +0000 for UTC.",
"default": "1:00am -0700"
},
{
"key": "LegalHoldsSettings",
"display_name": "Legal Holds:",
"type": "custom"
},
{
"key": "AmazonS3BucketSettings",
"display_name": "S3 Bucket:",
"type": "custom"
}
]
}
}