How can I add :includes => :account
to the current_user finder method in devise ?
Thanks
How can I add :includes => :account
to the current_user finder method in devise ?
Thanks
You could do something like this:
class User < ActiveRecord::Base
devise :your, :devise, :modules
default_scope :includes => :account
end
that will always include the account if you load the user.