Files
fizzy/app/models/command/search.rb
T
2025-05-06 09:25:52 +02:00

12 lines
185 B
Ruby

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