Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Waku v2 bridge #1

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
6 changes: 5 additions & 1 deletion bridge/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ type Protocol struct {
Charset string // irc
ClientID string // msteams
ColorNicks bool // only irc for now
DataDir string // status
Debug bool // general
DebugLevel int // only for irc now
DisableWebPagePreview bool // telegram
Expand All @@ -107,6 +108,8 @@ type Protocol struct {
Jid string // xmpp
JoinDelay string // all protocols
Label string // all protocols
ListenPort int // status
ListenAddr string // status
Login string // mattermost, matrix
LogFile string // general
MediaDownloadBlackList []string
Expand Down Expand Up @@ -161,7 +164,7 @@ type Protocol struct {
Team string // mattermost, keybase
TeamID string // msteams
TenantID string // msteams
Token string // gitter, slack, discord, api, matrix
Token string // gitter, slack, discord, api, matrix, status
Topic string // zulip
URL string // mattermost, slack // DEPRECATED
UseAPI bool // mattermost, slack
Expand Down Expand Up @@ -220,6 +223,7 @@ type BridgeValues struct {
Matrix map[string]Protocol
Slack map[string]Protocol
SlackLegacy map[string]Protocol
Status map[string]Protocol
Steam map[string]Protocol
Gitter map[string]Protocol
XMPP map[string]Protocol
Expand Down
Loading
Loading