forked from wbernest/mattermost-plugin-rssfeed
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.json
More file actions
106 lines (106 loc) · 3.86 KB
/
plugin.json
File metadata and controls
106 lines (106 loc) · 3.86 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"id": "rssfeed",
"name": "RSSFeed",
"description": "This plugin serves as an rss subscription service for Mattermost.",
"version": "0.3.0",
"min_server_version": "5.10.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": "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.",
"default": "15"
},
{
"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).",
"default": true
},
{
"key":"HideURLs",
"display_name": "Hide URL from public messages",
"type":"bool",
"default": true
},
{
"key": "GroupMessages",
"display_name": "Group Messages",
"type": "bool",
"help_text": "Control whether new items from the same feed will be grouped into one message",
"default": true
},
{
"key": "SortMessages",
"display_name": "Sort Messages",
"type": "bool",
"help_text": "Sort messages by date",
"default": true
},
{
"key": "GravatarDefault",
"display_name": "Gravatar Default Icon",
"type": "dropdown",
"help_text": "The default icon when a user's icon can't be found [Gravatar Icons](https://en.gravatar.com/site/implement/images/)",
"default": "mp",
"options": [
{
"display_name": "mystery-person",
"value": "mp"
},
{
"display_name": "identicon",
"value": "identicon"
},
{
"display_name": "monsterid",
"value": "monsterid"
},
{
"display_name": "wavatar",
"value": "wavatar"
},
{
"display_name": "retro",
"value": "retro"
},
{
"display_name": "robohash",
"value": "robohash"
},
{
"display_name": "blank",
"value": "blank"
},
{
"display_name": "404",
"value": "404"
},
{
"display_name": "custom",
"value": "custom"
}
]
},
{
"key": "GravatarCustom",
"display_name": "Custom Gravatar Icon URL",
"type": "text",
"help_text": "`Gravatar Default Icon` must be set to `custom`",
"default": ""
}
]
}
}