-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathplugin.json
79 lines (79 loc) · 3.28 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"id": "rssfeed",
"name": "RSSFeed",
"description": "This plugin serves as an RSS subscription service for Mattermost.",
"version": "0.2.6",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"freebsd-amd64": "server/dist/plugin-freebsd-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": "FormatTitle",
"display_name": "Print post title in bold",
"type": "bool",
"help_text": "(Optional) If enabled, the title of posts will be formatted in bold."
},
{
"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)."
},
{
"key": "ShowSummary",
"display_name": "Show Summary in Atom post",
"type": "bool",
"help_text": "(Optional) Use this field to hide the summary in Atom post (Useful if link already returns a valid link back to post)."
},
{
"key": "ShowContent",
"display_name": "Show Content in Atom post",
"type": "bool",
"help_text": "(Optional) Specify, whether the content of an Atom feed should be posted.",
"default": true
},
{
"key": "ShowRSSLink",
"display_name": "Show Link in RSS post",
"type": "bool",
"help_text": "(Optional) Specify, whether the link of an RSS feed should be posted.",
"default": true
},
{
"key": "ShowAtomLink",
"display_name": "Show Link in Atom post",
"type": "bool",
"help_text": "(Optional) Specify, whether the Link of an Atom feed should be posted.",
"default": true
},
{
"key": "ShowRSSItemTitle",
"display_name": "Show Title in RSS post",
"type": "bool",
"help_text": "(Optional) Specify, whether the title of an RSS feed should be posted.",
"default": true
},
{
"key": "ShowAtomItemTitle",
"display_name": "Show Title in Atom post",
"type": "bool",
"help_text": "(Optional) Specify, whether the title of an Atom feed should be posted.",
"default": true
}
]
}
}