rosa-build/app/controllers/api/v1/search_controller.rb

11 lines
276 B
Ruby
Raw Normal View History

2012-11-21 12:09:01 +00:00
class Api::V1::SearchController < Api::V1::BaseController
before_filter :authenticate_user! unless APP_CONFIG['anonymous_access']
def index
2012-11-21 15:04:41 +00:00
@results = Search.by_term_and_type(
params[:query],
(params[:type] || 'all'),
paginate_params
)
2012-11-21 12:09:01 +00:00
end
end