impress/app/controllers/items_controller.rb

12 lines
242 B
Ruby

class ItemsController < ApplicationController
def index
if params.has_key?(:q)
@query = params[:q]
begin
@results = Item.search(@query).all
rescue
flash[:alert] = $!.message
end
end
end
end