lamtha
Results
1
comments of
lamtha
This worked for me, it proxies to the 'MySlackBot' help block. ``` module Commands class Unknown < SlackRubyBot::Commands::Base match(/^(?\S*)[\s]*(?.*)$/) def self.call(client, data, _match) MySlackBot.slack_response(client, "#{SlackRubyBot::Commands::Support::Help.instance.bot_desc_and_commands.join('\n')}", data.channel) end end class About...