Guest User

Untitled

a guest
Feb 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. MODEL:
  2. class Gallery
  3. include DataMapper::Resource
  4.  
  5. belongs_to :user
  6. has n, :photos
  7.  
  8. def thumbnail
  9. "1"
  10. end
  11. end
  12.  
  13. CONTROLLER:
  14. def index
  15. #@galleries = User.first(:login => params[:login]).galleries # This doesn't work! DM bug?
  16. @galleries = Gallery.all # This works!
  17. display @galleries
  18. end
  19.  
  20. VIEW:
  21. <%= partial 'galleries', :with => @galleries %>
  22.  
  23. PARTIAL:
  24. <%= galleries.thumbnail %>
Add Comment
Please, Sign In to add comment