我该在何处覆盖active_for_authentication?
def active_for_authentication?
super && account_active?
end
1)文件的位置和文件名。
2)完整文件的外观是..with等... class something <
原来的active_for_authentication?该方法可以在devise/lib/devise/models/authenticatable.rb中找到。
谢谢你
最佳答案
因此,如果您有一个用户模型,您只需要做
class User
def active_for_authentication?
super && account_active?
end
end