Skip to content

Instantly share code, notes, and snippets.

@mazrean
Created December 4, 2020 18:29
Show Gist options
  • Save mazrean/20067d800b01f41c41f400be189b2f0d to your computer and use it in GitHub Desktop.
Save mazrean/20067d800b01f41c41f400be189b2f0d to your computer and use it in GitHub Desktop.
Bug Shooting Challenge 事前問題2
class UsersController < ActionController
def show
user = User.where(["id = ?", params[:id].to_i]).select("id, name, created_at, updated_at").first
render json: user
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment