This repository has been archived on 2024-11-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
mattermost-plugin-attachmen.../plugin.json
2018-07-23 13:43:22 -04:00

36 lines
1.3 KiB
JSON

{
"id": "com.mattermost.sample-plugin",
"name": "Sample Plugin",
"description": "This plugin serves as a reference guide for best practices and build scripts when writing Mattermost plugins.",
"version": "0.0.1",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
},
"executable": ""
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "",
"footer": "",
"settings": [{
"key": "ChannelName",
"display_name": "Channel Name",
"type": "text",
"help_text": "The channel to use as part of the sample plugin, created for each team automatically if it does not exist.",
"placeholder": "sample_plugin",
"default": "sample_plugin"
}, {
"key": "Username",
"display_name": "Username",
"type": "text",
"help_text": "The user to use as part of the sample plugin, created automatically if it does not exist.",
"placeholder": "sample_plugin",
"default": "sample_plugin"
}]
}
}