Files
fizzy/app/models/command/search.rb
T
2025-06-25 07:48:02 +02:00

12 lines
169 B
Ruby

class Command::Search < Command
store_accessor :data, :terms
def title
"Search '#{terms}'"
end
def execute
redirect_to search_path(q: terms)
end
end