Files
fizzy/app/models/command/search.rb
T
2025-05-06 06:42:33 +02:00

16 lines
215 B
Ruby

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