Guest User

Untitled

a guest
May 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. ## in users controller
  2. def add
  3. @image = Image.find(params[:id])
  4. @user = current_user
  5. @image.user_images.create(attributes = { :user_id => @user.id })
  6. flash[:notice] = 'You have added an image'
  7. end
Add Comment
Please, Sign In to add comment