diff options
author | Wim <wim@42.be> | 2017-04-08 00:42:37 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2017-04-08 00:42:37 +0200 |
commit | b469c8ddbda62ceecbd10883e4af1fbfe5d54898 (patch) | |
tree | f483ff9c9aa06aa4cd866a03f386492c3a33dcc7 /bridge/config | |
parent | eee0036c7f0d711f0af203bf0fb8dccd42241c1a (diff) | |
download | matterbridge-msglm-b469c8ddbda62ceecbd10883e4af1fbfe5d54898.tar.gz matterbridge-msglm-b469c8ddbda62ceecbd10883e4af1fbfe5d54898.tar.bz2 matterbridge-msglm-b469c8ddbda62ceecbd10883e4af1fbfe5d54898.zip |
Rejoin channel when kicked (irc). Closes #146
Diffstat (limited to 'bridge/config')
-rw-r--r-- | bridge/config/config.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bridge/config/config.go b/bridge/config/config.go index 564ebddb..78274165 100644 --- a/bridge/config/config.go +++ b/bridge/config/config.go @@ -10,8 +10,9 @@ import ( ) const ( - EVENT_JOIN_LEAVE = "join_leave" - EVENT_FAILURE = "failure" + EVENT_JOIN_LEAVE = "join_leave" + EVENT_FAILURE = "failure" + EVENT_REJOIN_CHANNELS = "rejoin_channels" ) type Message struct { |