Skip to content

Instantly share code, notes, and snippets.

@jetrubyshared
Created July 11, 2016 12:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jetrubyshared/8b2b3829783595a398c20ca19c526deb to your computer and use it in GitHub Desktop.
Save jetrubyshared/8b2b3829783595a398c20ca19c526deb to your computer and use it in GitHub Desktop.
###############
## WRONG ##
###############
class API::ArticlesController
def index
@articles = Article.all
render json: @articles, status: 200
end
end
###############
## RIGHT ##
###############
class API::ArticlesController
def index
articles = Article.all
render json: articles, status: 200
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment