forked from wbernest/mattermost-plugin-rssfeed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
32 lines (31 loc) · 1.21 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
{
"id": "rssfeed",
"name": "RSSFeed",
"description": "This plugin serves as an rss subscription service for Mattermost.",
"version": "0.2.2",
"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": "Settings for RSSFeed plugin",
"footer": "",
"settings": [
{
"key": "Heartbeat",
"display_name": "Time window between rss feed checks (minutes).",
"type": "text",
"help_text": "This is used to set a timer for the system to know when to go check to see if there is any new data in the subscribed rss feeds. Defaults to 15 minutes."
},
{
"key": "ShowDescription",
"display_name": "Show Description in RSS post.",
"type": "bool",
"help_text": "(Optional) Use this field to hide the description in rss post (Useful if link already returns a valid link back to post)."
}
]
}
}