作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经用我的设计模型实现了 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/
我是一名优秀的程序员,十分优秀!