forked from scottleedavis/mattermost-plugin-watermark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
26 lines (26 loc) · 937 Bytes
/
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
{
"id": "com.github.scottleedavis.mattermost-plugin-watermark",
"name": "Plugin Watermark",
"description": "This plugin adds a watermark to uploaded images.",
"version": "0.1.0",
"min_server_version": "5.12.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": "",
"footer": "",
"settings": [{
"key": "WaterMark",
"display_name": "Watermark Text",
"type": "text",
"help_text": "The text that will be added to uploaded images.",
"placeholder": "This is an image that has been uploaded to Mattermost",
"default": "This is an image that has been uploaded to Mattermost"
}]
}
}