Last active
June 9, 2018 04:35
-
-
Save jordanhudgens/8604807f25e5e95a192027939970aa2c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class SearchController < ApplicationController | |
def search | |
@guides = Guide.search_by_term(params[:query]) | |
render json: @guides | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment