-
Notifications
You must be signed in to change notification settings - Fork 57
/
plugin.json
49 lines (49 loc) · 2.23 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
{
"id": "mattermost-autolink",
"name": "Autolink",
"description": "Automatically rewrite text matching a regular expression into a Markdown link.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-autolink",
"support_url": "https://github.com/mattermost/mattermost-plugin-autolink/issues",
"icon_path": "assets/icon.svg",
"min_server_version": "5.16.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": ""
},
"settings_schema": {
"header": "Configure this plugin directly in the config.json file, or using the /autolink command. Learn more [in our documentation](https://github.com/mattermost/mattermost-plugin-autolink/blob/master/README.md).\n\n To report an issue, make a suggestion, or contribute, [check the plugin repository](https://github.com/mattermost/mattermost-plugin-autolink).",
"footer": "",
"settings": [
{
"key": "enableadmincommand",
"display_name": "Enable administration with /autolink command:",
"type": "bool",
"help_text": "",
"placeholder": "",
"default": true
},
{
"key": "enableonupdate",
"display_name": "Apply plugin to updated posts as well as new posts:",
"type": "bool",
"help_text": "",
"placeholder": "",
"default": false
},
{
"key": "pluginadmins",
"display_name": "Admin User IDs:",
"type": "text",
"help_text": "Comma-separated list of user IDs authorized to administer the plugin in addition to the System Admins.\n \n User IDs can be found by navigating to **System Console \u003e User Management \u003e Users**.",
"placeholder": "",
"default": null
}
]
}
}