我尝试为用户模型加密电子邮件属性。email
由设计使用。
class User < ActiveRecord::Base
end
devise :database_authenticatable, :registerable, :confirmable,
:recoverable, :rememberable, :trackable
加密我使用attr_encrypted
gem:https ://github.com/attr-encrypted/attr_encrypted
我想使用这个gem,但我不喜欢。实际上,我收到了很多与此相关的问题。
是否有人email
在使用 Devis 的 Rails 项目中具有加密属性,理想情况下使用attr_encrypted
?你对此有何看法?