summaryrefslogtreecommitdiffstats
path: root/bridge/slack/slack.go
Commit message (Collapse)AuthorAgeFilesLines
* Remove unnecessary check, make megacheck happyWim2017-09-191-19/+17
|
* Relay attachments from mattermost to slack (slack). Closes #260Wim2017-09-181-0/+27
|
* Add support for deleting messages across bridges.Wim2017-09-111-2/+18
| | | | | | | | | | | | Currently fully support mattermost,slack and discord. Message deleted on the bridge or received from other bridges will be deleted. Partially support for Gitter. Gitter bridge will delete messages received from other bridges. But if you delete a message on gitter, this deletion will not be sent to other bridges (this is a gitter API limitation, it doesn't propogate edits or deletes via the API)
* Do not break messages on newline (slack). Closes #258Wim2017-09-101-18/+16
|
* Send first message after connect (slack). Closes #252Wim2017-09-071-47/+42
|
* Replace mentions from other bridges. (slack). Closes #233Wim2017-08-291-0/+3
|
* Add support for editing messages (slack)Wim2017-08-281-9/+16
|
* Modify Send() to return also a message idWim2017-08-271-5/+5
|
* Handle leave/join events (slack). Closes #246Wim2017-08-271-0/+4
|
* Allow a webhookurl per channel (discord). #239Wim2017-08-121-2/+2
|
* Add action support for slack,mattermost,irc,gitter,matrix,xmpp,discord. #199Wim2017-07-301-0/+6
|
* Disable message from other bots when using webhooks (slack)Wim2017-07-221-1/+5
|
* Tag messages we send ourself using CallbackID hack (slack). Closes #219Wim2017-07-171-8/+8
|
* Suppress parent message when child message is received (slack) (#218)Jerry Heiselman2017-07-171-1/+1
| | | | | | | | | | | | * Suppress parent message when child message is received When a thread is started in Slack and a user makes a comment on the thread, matterbridge sends the original parent message again on each child comment. This change suppresses that. * Update slack.go Moved determination of ThreadTimestamp to handleSlackClient so the MMMessage struct doesn't need to be modified * Ran 'go fmt'
* Add support for fallback/text in attachments (slack)Wim2017-07-161-0/+9
|
* Make sure bot doesn't loop now we relay bot messages (slack)Wim2017-07-161-1/+8
|
* Fix lookup bot username (slack). #213Wim2017-07-161-8/+12
|
* Refactor connecting logic slack/mattermost. Fixes #216Wim2017-07-151-13/+44
|
* Fix megacheck / go vet issuesWim2017-07-141-1/+1
|
* Lookup bot username (slack). #213Wim2017-07-101-0/+9
|
* Replace HTML entities (slack). #215Wim2017-07-091-0/+2
|
* Deprecate URL,useAPI,BindAddress (slack,mattermost,rocketchat)v0.16.0-rc1Wim2017-06-291-11/+17
|
* Remove label from URLs (slack). Closes #205Wim2017-06-261-0/+9
| | | | | If slack detects a text contains an url it changes it to <http://url|url>. Strip the |url so that http://url remains.
* Add UserID to each message. Closes #200Wim2017-06-181-1/+3
|
* Fix sending to different channels on same account (slack). Closes #177Wim2017-05-241-3/+0
|
* Ignore error on private channel join (slack) Fixes #150Wim2017-04-171-1/+3
|
* Add support for edited messages (slack)Wim2017-04-161-0/+5
|
* Allow bot tokens for now without warning (slack). Closes #140Wim2017-03-271-0/+4
|
* Do not relay slackbot messages (slack). Closes #119Wim2017-02-171-0/+3
|
* Refactor to handle disconnects/reconnects better.Wim2017-02-141-0/+5
| | | | Now try to reconnect every 60 seconds until forever.
* Fix receiving messages from private channels (slack). See #118Wim2017-02-031-2/+14
|
* Add support for private channels (slack). Closes #118Wim2017-01-281-0/+8
|
* Do not use API functions in webhook (slack). Closes #110Wim2017-01-121-1/+1
|
* Replace id-mentions to usernames (slack). Closes #86Wim2016-11-201-0/+23
|
* RefactorWim2016-11-131-27/+9
|
* Add support for using avatars from discord,slack and gitter in slackWim2016-11-061-1/+18
|
* Add support for dynamic IconURL (slack). Closes #43Wim2016-11-051-9/+19
|
* Refactor modifyMessageWim2016-11-041-3/+10
|
* Drop first received message on connection to avoid duplicates (slack). Fixes #55Wim2016-10-291-13/+19
|
* Use RTM only on API (slack). Fix #56Wim2016-10-251-2/+2
|
* Add error message about non-existing channels (slack)Wim2016-10-081-5/+10
|
* Fix slack channel joinWim2016-09-301-3/+2
|
* Fix joining slack/mattermost channels using the webhookWim2016-09-201-3/+7
|
* Cleanup slack bridge debug/info messagesWim2016-09-201-24/+15
|
* Refactor for more flexibilityWim2016-09-181-30/+49
| | | | | | | * Move from gcfg to toml configuration because gcfg was too restrictive * Implemented gateway which has support multiple in and out bridges. * Allow for bridging the same bridges, which means eg you can now bridge between multiple mattermosts. * Support multiple gateways
* Add Slack supportWim2016-09-051-0/+180