Files
fizzy/app/models/command/search.rb
T
2025-05-06 07:29:59 +02:00

16 lines
224 B
Ruby

class Command::Search < Command
store_accessor :data, :query
def execute
redirect_to cards_path("terms[]": query.presence)
end
def description
"Search '#{query}"
end
def to_command
query
end
end