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

12 lines
235 B
Ruby

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