I\'m using Devise for authentication in my Rails app. I\'d like to eager load some of a users associated models in some of my controllers. Something like this:
c
Why not do it with default_scope on the model?
like so:
Class User < ActiveRecord::Base ... default_scope includes(:saved_listings) ... end