我已经用我的设计模型实现了全能,所以我可以使用其他服务进行身份验证.
密码对我的模型不再需要,因为用户可以使用twitter,Facebook …进行身份验证
密码对我的模型不再需要,因为用户可以使用twitter,Facebook …进行身份验证
一切都工作正常,但是当用户尝试编辑其注册时,设计跳过该进程,因为用户没有通知’current_password'(在某些情况下现在不存在).
我创建了一个注册控制器来覆盖其中的一个:
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