mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 11:52:56 +08: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
|