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