aboutsummaryrefslogtreecommitdiff
path: root/connector/mattermost/config.go
blob: b7c4ba8b7cb2a13eefb71b83c0c1daf5923b9cbf (plain) (blame)
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
package mattermost

import (
	. "git.deuxfleurs.fr/Deuxfleurs/easybridge/connector"
)

func init() {
	Register("mattermost", ConfigSchema{
		&ConfigEntry{
			Name:        "server",
			Description: "Server",
			Required:    true,
		},
		&ConfigEntry{
			Name:        "username",
			Description: "Username",
			Required:    true,
		},
		&ConfigEntry{
			Name:        "password",
			Description: "Password",
			IsPassword:  true,
		},
		&ConfigEntry{
			Name:        "token",
			Description: "Authentification token (replaces password if set)",
		},
		&ConfigEntry{
			Name:        "teams",
			Description: "Comma-separated list of teams to follow",
			Required:    true,
		},
		&ConfigEntry{
			Name:        "no_tls",
			Description: "Disable SSL/TLS",
			IsBoolean:   true,
			Default:     "false",
		},
		&ConfigEntry{
			Name:        "initial_backlog",
			Description: "Maximum number of messages to load when joining a channel",
			IsNumeric:   true,
			Default:     "1000",
		},
		&ConfigEntry{
			Name:        "initial_members",
			Description: "Maximum number of members to load when joining a channel",
			IsNumeric:   true,
			Default:     "100",
		},
	})
}