Class: SaasPlatform::SearchController

Inherits:
ApplicationController show all
Defined in:
app/controllers/saas_platform/search_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#current_account

Instance Method Details

#indexObject



5
6
7
8
9
10
11
12
13
# File 'app/controllers/saas_platform/search_controller.rb', line 5

def index
  @query = params[:q]
  @results = SearchService.new(, @query).perform if @query.present?
  
  respond_to do |format|
    format.html
    format.turbo_stream
  end
end