如何让vestal_versions 存储更改记录的用户?

发布于 2024-09-08 06:38:23 字数 517 浏览 5 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墨洒年华 2024-09-15 06:38:23

批量分配和 updated_by 参数似乎存在错误。

我的解决方法如下所示:

@my_model.updated_by = current_user
@my_model.save

我在控制器中的每个 saveupdate_attributes 调用之前添加了分配。

There seems to be a bug with mass assignment and the updated_by parameter.

My workaround looks like this:

@my_model.updated_by = current_user
@my_model.save

I added the assignment before every save or update_attributes call in the controllers.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文