Skip to content

Instantly share code, notes, and snippets.

@jordanhudgens
Last active June 9, 2018 04:35
Show Gist options
  • Save jordanhudgens/8604807f25e5e95a192027939970aa2c to your computer and use it in GitHub Desktop.
Save jordanhudgens/8604807f25e5e95a192027939970aa2c to your computer and use it in GitHub Desktop.
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