Guest User

Untitled

a guest
Apr 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. def show
  2. @user = User.find(params[:id])
  3. @invite = Invite.new if @site.beta_invites?
  4. raise ActiveRecord::RecordNotFound unless @user == current_user
  5. respond_to do |format|
  6. format.html
  7. end
  8. end
Add Comment
Please, Sign In to add comment