Skip to content

Instantly share code, notes, and snippets.

@arturdent
Created May 19, 2014 09:13
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 arturdent/7a2bbe5330d3c4d4f685 to your computer and use it in GitHub Desktop.
Save arturdent/7a2bbe5330d3c4d4f685 to your computer and use it in GitHub Desktop.
# app/controllers/admin/users_controller.rb:33
.....
def collection
@users ||= apply_scopes(User).includes(:social_profiles).order('created_at DESC').page(params[:page]).per(20)
end
# app/views/admin/index.html.haml
.....
%tbody
- collection.each do |resource|
- resource.social_profiles.includes(:profileble)
%tr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment