Skip to content

Commit ab7aac0

Browse files
committed
Merge pull request nandub#101 from sshirokov/topic
Support changing the topic in the adapter.
2 parents ad567c0 + decaf4d commit ab7aac0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/irc.coffee

+5
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ class IrcBot extends Adapter
1717
for str in strings
1818
@bot.say target, str
1919

20+
topic: (envelope, strings...) ->
21+
data = strings.join " / "
22+
channel = envelope.room
23+
@bot.send 'TOPIC', channel, data
24+
2025
emote: (envelope, strings...) ->
2126
# Use @notice if SEND_NOTICE_MODE is set
2227
return @notice envelope, strings if process.env.HUBOT_IRC_SEND_NOTICE_MODE?

0 commit comments

Comments
 (0)