Class: Spree::SuggestionsController

Inherits:
BaseController
  • Object
show all
Defined in:
app/controllers/spree/suggestions_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject



3
4
5
6
7
# File 'app/controllers/spree/suggestions_controller.rb', line 3

def index
  suggestions = Spree::Suggestion.relevant(params['term'])

  render :json => suggestions.map(&:keywords)
end