简体   繁体   中英

How to auto-include a related model in devise's current_user helper method?

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM