forked from scottleedavis/mattermost-plugin-remind
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.json
More file actions
30 lines (30 loc) · 1.28 KB
/
plugin.json
File metadata and controls
30 lines (30 loc) · 1.28 KB
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
{
"id": "com.github.scottleedavis.mattermost-plugin-remind",
"name": "Remind",
"description": "Sets Reminders for users and channels via a Trigger word",
"homepage_url": "https://github.com/scottleedavis/mattermost-plugin-remind",
"support_url": "https://github.com/scottleedavis/mattermost-plugin-remind/issues",
"release_notes_url": "https://github.com/scottleedavis/mattermost-plugin-remind/releases/tag/v1.0.0",
"version": "1.0.0",
"min_server_version": "6.3.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"
},
"executable": ""
},
"settings_schema": {
"settings": [
{
"key": "Trigger",
"display_name": "Trigger Word:",
"type": "text",
"help_text": "Trigger Word must be unique, cannot begin with a slash, and cannot contain any spaces.",
"default": "remind"
}
],
"footer": "* To report an issue, make a suggestion, or submit a contribution, [check the repository](https://github.com/scottleedavis/mattermost-plugin-remind/)."
}
}