forked from mattermost-community/mattermost-plugin-autolink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
43 lines (43 loc) · 1.9 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
{
"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",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-autolink/releases/tag/v1.2.1",
"icon_path": "assets/icon.svg",
"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"
}
},
"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).",
"settings": [
{
"key": "EnableAdminCommand",
"display_name": "Enable administration with /autolink command:",
"type": "bool",
"default": true
},
{
"key": "EnableOnUpdate",
"display_name": "Apply plugin to updated posts as well as new posts:",
"type": "bool",
"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 > User Management > Users**."
}
]
}
}