如何让vestal_versions 存储更改记录的用户?
我正在使用 vestal_versions
1.0.2 和 rails
2.3.8
我试图将用户与对模型所做的更改关联起来,如文档中所示:
@user.update_attributes(:last_name => "Jobs", :updated_by => "Tyler")
@user.versions.last.user # => "Tyler"
文档:< a href="http://github.com/laserlemon/vestal_versions" rel="nofollow noreferrer">http://github.com/laserlemon/vestal_versions
调用 @user.save
用户“Tyler”未保存在 Vestal_versions 使用的 versions
表中。
有人见过这个吗?这是一个错误吗?
I'm using vestal_versions
1.0.2 and rails
2.3.8
I'm trying to associate a user with changes made to models as shown in the the documentation:
@user.update_attributes(:last_name => "Jobs", :updated_by => "Tyler")
@user.versions.last.user # => "Tyler"
Documentation: http://github.com/laserlemon/vestal_versions
After calling @user.save
the user "Tyler" is NOT saved in versions
table used by vestal_versions.
Has anybody seen this? Is this a bug?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
批量分配和 updated_by 参数似乎存在错误。
我的解决方法如下所示:
我在控制器中的每个
save
或update_attributes
调用之前添加了分配。There seems to be a bug with mass assignment and the
updated_by
parameter.My workaround looks like this:
I added the assignment before every
save
orupdate_attributes
call in the controllers.