4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-06-27 06:29:24 +00:00

Add Slack support

This commit is contained in:
Wim
2016-09-05 16:34:37 +02:00
parent e449a97bd0
commit b30e85836e
63 changed files with 6314 additions and 1 deletions

View File

@ -35,7 +35,6 @@ type Config struct {
RemoteNickFormat string
Token string
}
Mattermost struct {
URL string
ShowJoinPart bool
@ -55,6 +54,19 @@ type Config struct {
NoTLS bool
Enable bool
}
Slack struct {
BindAddress string
Enable bool
IconURL string
IgnoreNicks string
NickFormatter string
NicksPerRow int
PrefixMessagesWithNick bool
RemoteNickFormat string
Token string
URL string
UseAPI bool
}
Xmpp struct {
IgnoreNicks string
Jid string
@ -70,6 +82,7 @@ type Config struct {
Mattermost string
Xmpp string
Gitter string
Slack string
}
General struct {
GiphyAPIKey string