如何为使用 Devise rpx conecteable 的用户跳过电子邮件确认
我正在开发一个小型项目,我不知道如何为使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您始终可以在 User 类中重写此方法:
例如,您可以检查是否
rpx_identifier.blank?
尝试以下代码:
you can always override this method in User class:
for example you can check there if
rpx_identifier.blank?
try this code: