Rails 3,使用Devise,如何在事实之后添加:lockable?

发布于 10-25 05:28 字数 96 浏览 2 评论 0原文

我成功使用了 devise,但决定添加 :lockable 模块。我们的表称为“用户”。

我无法找到有关如何在完成初始设置后添加新的设计模块(或删除一个)的文档。

I am using devise successfully, but decided to add the :lockable module. Our table is called Users.

I cannot find docs on how to add a new devise module (or remove one) after doing an initial setup.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧时光的容颜2024-11-01 05:28:49

您应该能够在迁移中执行以下操作

change_table(:users) do |t|
  t.lockable :lock_strategy => :failed_attempts, :unlock_strategy => :both
end

它添加的字段是:

t.integer  "failed_attempts",                     :default => 0
t.string   "unlock_token"
t.datetime "locked_at"

You should be able to do the following in a migration

change_table(:users) do |t|
  t.lockable :lock_strategy => :failed_attempts, :unlock_strategy => :both
end

The fields it adds are:

t.integer  "failed_attempts",                     :default => 0
t.string   "unlock_token"
t.datetime "locked_at"
玉环2024-11-01 05:28:49

Devise 在您的案例中的模型 app/models/user.rb 中添加了对 devise 的调用。您只需添加 :lockable 作为参数即可。

Devise adds a call to devise in your model app/models/user.rb in your case. You can just add :lockable as a parameter to that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文