Guest User

Untitled

a guest
May 24th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 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
  8.  
  9. ## view code
  10. <%= button_to 'Add', :action => :add, :id => image.id %>
Add Comment
Please, Sign In to add comment