serradura/slack-time-tracker

View on GitHub
app/lib/slash_command/commands/unknown.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module SlashCommand
  module Commands
    class Unknown < Template
      HELP = "There’s no such command."

      def call
        response.result = HELP
      end
    end
  end
end