Last active
September 16, 2015 12:34
-
-
Save swaathi/02e4a3b6ff7b5f7e9adb to your computer and use it in GitHub Desktop.
Elasticsearch with Searchkick gem
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def search | |
@songs = Song.search(params[:query]) | |
if request.xhr? | |
render :json => @songs.to_json | |
else | |
render :index | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment