不同设计模型中的不同认证密钥

时间:2015-11-08 15:31:22

标签: ruby-on-rails devise

我正在使用两种型号的设计。我想制作一个是手机的验证密钥,另一个是电子邮件。如何管理?

1 个答案:

答案 0 :(得分:0)

在您的第一个模型中添加:

 devise :database_authenticatable, :registerable,
     :recoverable, :rememberable, :trackable, authentication_keys: [:email]

在你的第二个模型中添加:

 devise :database_authenticatable, :registerable,
     :recoverable, :rememberable, :trackable, authentication_keys: [:phone]

希望这对你有用,有关更多信息,请点击Link