gpt4 book ai didi

ruby-on-rails - Rails 3 - 设计 : How to skip the 'current_password' when editing a registration?

转载 作者:行者123 更新时间:2023-12-04 00:01:07 26 4
gpt4 key购买 nike

我已经用我的设计模型实现了 omniauth,所以我可以使用其他服务进行身份验证。
我的模型不再需要密码,因为用户可以使用 twitter、facebook 进行身份验证...

一切正常,但是,当用户尝试编辑其注册时,设计跳过该过程,因为用户没有通知“current_password”(现在在某些情况下不存在)。

我创建了一个注册 Controller 来覆盖设备:

class RegistrationsController < Devise::RegistrationsController
def update
super
end
end

但是我没有找到任何关于如何跳过密码验证的文档,我怎么能在我的更新操作中做到这一点?

最佳答案

与上面类似,尝试将其放入您的用户模型中:

# bypasses Devise's requirement to re-enter current password to edit
def update_with_password(params={})
if params[:password].blank?
params.delete(:password)
params.delete(:password_confirmation) if params[:password_confirmation].blank?
end
update_attributes(params)
end

关于ruby-on-rails - Rails 3 - 设计 : How to skip the 'current_password' when editing a registration?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4101220/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com