康康舞块与条件

发布于 2024-12-11 21:48:03 字数 314 浏览 1 评论 0原文

我的 Abilities.rb 中有以下代码块:

  can :read, Comment do |comment|
    comment.user.account == user.account
  end

我正在尝试将其转换为语句(格式为:

can :read, Project, :active => true, :user_id => user.id

以便我可以使用 accessible_by 方法。

这可能吗?

I've got the following code block in my Abilities.rb:

  can :read, Comment do |comment|
    comment.user.account == user.account
  end

I'm trying to convert it a statement (of the form:

can :read, Project, :active => true, :user_id => user.id

so that I can use the accessible_by methods.

Is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

故人爱我别走 2024-12-18 21:48:03

假设您的用户模型中有一个 account_id 字段,您可以在 cancan 条件下交叉关联,如下所示:

can :read, Comment, { :user => { :account_id => user.account.id } }

Assuming there is an account_id field in your user model, you can cross associations in cancan conditions like this:

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