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

12 lines
185 B
Ruby

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