forked from mattermost-community/mattermost-plugin-autolink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
39 lines (39 loc) · 1.64 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
{
"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",
"version": "1.2.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"
}
},
"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\nTo report an issue, make a suggestion or a contribution, [check the plugin repository](https://github.com/mattermost/mattermost-plugin-autolink).",
"settings": [
{
"key": "EnableAdminCommand",
"display_name": "Enable administration with /autolink command",
"type": "bool",
"default": false
},
{
"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 userIDs authorized to administer the plugin in addition to the System Admins.\n \nUser IDs can be found by navigating to **System Console** > **Users**."
}
]
}
}