Files
fizzy/app/models/command/search.rb
T
2025-05-06 11:40:57 +02:00

12 lines
210 B
Ruby

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