我需要从以下位置覆盖 downcase_keys 方法devise/lib/devise/models/authenticatable.rb
:
请参阅。
所以我在我的 Rails 应用程序中有一个初始化程序:
module Devise
module Models
module Authenticatable
protected
def downcase_keys
puts "foo"
super
end
end
end
但是这个被覆盖的方法永远不会被调用(当它应该时)。
有什么线索吗?
谢谢。