-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
75 lines (75 loc) · 3.09 KB
/
plugin.json
File metadata and controls
75 lines (75 loc) · 3.09 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
{
"id": "ch.icorete.mattermost-timeline",
"name": "Mattermost Timeline",
"description": "Real-time animated timeline of events from external webhooks, displayed in the right-hand sidebar.",
"version": "1.4.0",
"homepage_url": "https://github.com/icoretech/mattermost-timeline",
"support_url": "https://github.com/icoretech/mattermost-timeline/issues",
"release_notes_url": "https://github.com/icoretech/mattermost-timeline/releases",
"icon_path": "assets/icon.svg",
"min_server_version": "7.0.0",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"linux-arm64": "server/dist/plugin-linux-arm64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"darwin-arm64": "server/dist/plugin-darwin-arm64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "Configure the Mattermost Timeline plugin.",
"footer": "",
"settings": [
{
"key": "WebhookSecret",
"display_name": "Webhook Secret",
"type": "text",
"help_text": "Shared secret for authenticating incoming webhooks. External services must send this in the X-Webhook-Secret header.",
"default": "",
"secret": true
},
{
"key": "MaxEventsStored",
"display_name": "Maximum Events Stored",
"type": "text",
"help_text": "Maximum number of events to persist per team. Oldest events are pruned when this limit is exceeded. Default: 500.",
"default": "500"
},
{
"key": "MaxEventsDisplayed",
"display_name": "Maximum Events Displayed",
"type": "text",
"help_text": "Maximum number of events shown in the timeline at once. Default: 100.",
"default": "100"
},
{
"key": "TimelineOrder",
"display_name": "Timeline Order",
"type": "dropdown",
"help_text": "Controls the display order of events in the timeline. Oldest-first shows newest events at the bottom; newest-first shows newest events at the top.",
"default": "oldest_first",
"options": [
{
"display_name": "Oldest first (newest at bottom)",
"value": "oldest_first"
},
{
"display_name": "Newest first (newest at top)",
"value": "newest_first"
}
]
},
{
"key": "EnableReactions",
"display_name": "Enable Reactions",
"type": "bool",
"help_text": "Allow users to react to timeline events with icon-based reactions.",
"default": true
}
]
}
}