mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:26:54 -06:00
10 lines
180 B
Ruby
10 lines
180 B
Ruby
require_dependency 'search'
|
|
|
|
class SearchController < ApplicationController
|
|
|
|
def query
|
|
render_json_dump(Search.query(params[:term], params[:type_filter]).as_json)
|
|
end
|
|
|
|
end
|