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

13 lines
320 B
Ruby

class Api::V1::SearchController < Api::V1::BaseController
before_filter :authenticate_user! unless APP_CONFIG['anonymous_access']
def index
@results = Search.by_term_and_type(
params[:query],
(params[:type] || 'all'),
current_ability,
paginate_params
)
respond_to :json
end
end