lib/slack/smart-bot/comm/respond_thread.rb in slack-smart-bot-1.13.2 vs lib/slack/smart-bot/comm/respond_thread.rb in slack-smart-bot-1.14.0
- old
+ new
@@ -1,5 +1,5 @@
class SlackSmartBot
- def respond_thread(msg, unfurl_links: true, unfurl_media: true)
- respond(msg, :on_thread, unfurl_links: unfurl_links, unfurl_media: unfurl_media)
+ def respond_thread(msg='', unfurl_links: true, unfurl_media: true, blocks: [])
+ respond(msg, :on_thread, unfurl_links: unfurl_links, unfurl_media: unfurl_media, blocks: blocks)
end
end