This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/controllers/search_controller.rb
2013-03-07 16:52:01 +01:00

11 lines
250 B
Ruby

require_dependency 'search'
class SearchController < ApplicationController
def query
search_result = Search.query(params[:term], params[:type_filter], SiteSetting.min_search_term_length)
render_json_dump(search_result.as_json)
end
end