impress/app/controllers/items_controller.rb
2010-05-15 20:46:41 -04:00

16 lines
340 B
Ruby

class ItemsController < ApplicationController
def index
if params.has_key?(:q)
@query = params[:q]
begin
@results = Item.search(@query).alphabetize.paginate :page => params[:page]
rescue
flash.now[:alert] = $!.message
end
end
end
def show
@item = Item.find params[:id]
end
end