Skip to content

Instantly share code, notes, and snippets.

@yukas
Last active October 8, 2016 07:47
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 yukas/3acd6a4aa468e4e8e34c6522117163c1 to your computer and use it in GitHub Desktop.
Save yukas/3acd6a4aa468e4e8e34c6522117163c1 to your computer and use it in GitHub Desktop.
class UsersController < ApplicationController
def show
@user = User.find(params[:id])
...
end
def edit 
@user = User.find(params[:id])
...
end
def update
@user = User.find(params[:id])
...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment