-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathplugin.json
More file actions
30 lines (30 loc) · 1.56 KB
/
Copy pathplugin.json
File metadata and controls
30 lines (30 loc) · 1.56 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.mattermost.welcomebot",
"name": "Welcome Bot",
"description": "This plugin adds a WelcomeBot that helps add new users to channels.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-welcomebot",
"support_url": "https://github.com/mattermost/mattermost-plugin-welcomebot/issues",
"min_server_version": "5.37.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"
}
},
"settings_schema": {
"header": "Team welcome messages (WelcomeMessages) are configured directly in config.json. Learn more [in our documentation](https://github.com/mattermost/mattermost-plugin-welcomebot/blob/master/README.md).\n\n To report an issue, make a suggestion, or submit a contribution, [check the plugin repository](https://github.com/mattermost/mattermost-plugin-welcomebot).",
"settings": [
{
"key": "ChannelWelcomeAutoJoinDelaySeconds",
"display_name": "Channel Welcome Delay (seconds)",
"type": "number",
"help_text": "How long to wait (in seconds) before sending the channel welcome ephemeral after a user joins. Applies to all join types. Increase if users report the welcome appearing before the channel has loaded. Default: 5.",
"placeholder": "5",
"default": 5
}
]
}
}