forked from OpenNeo/impress
12 lines
242 B
Ruby
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
|