class SlackRubyBot::Commands::Unknown

Public Class Methods

call(client, data, _match) click to toggle source
# File lib/slack-ruby-bot/commands/unknown.rb, line 8
def self.call(client, data, _match)
  client.say(channel: data.channel, text: "Sorry <@#{data.user}>, I don't understand that command!")
end