如何为使用 Devise rpx conecteable 的用户跳过电子邮件确认

发布于 2024-12-06 07:08:15 字数 98 浏览 4 评论 0原文

我正在开发一个小型项目,我不知道如何为使用 devise_rpx_connectable_ 登录的用户跳过电子邮件确认,每次我尝试使用此服务登录时,它都会向这些用户发送电子邮件确认。

I am working on a mini project and i dont know how to skip email confirmation for users who uses devise_rpx_connectable_to sign in, Every time i try to sign in using this services it sends email confirmation to those users.

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

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

发布评论

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

评论(1

南冥有猫 2024-12-13 07:08:16

您始终可以在 User 类中重写此方法:

def confirmation_required?
      !confirmed?
end

例如,您可以检查是否 rpx_identifier.blank?

尝试以下代码:

def confirmation_required?
      !confirmed? and rpx_identifier.blank?
end

you can always override this method in User class:

def confirmation_required?
      !confirmed?
end

for example you can check there if rpx_identifier.blank?

try this code:

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