cancan 和herited_resources 覆盖集合

发布于 2024-10-17 01:18:23 字数 377 浏览 1 评论 0原文

我想我与我最喜欢的两颗宝石发生了冲突。请考虑以下事项:

class AccountsController < InheritedResources::Base
  load_and_authorize_resource

  def collection
    @accounts ||= end_of_association_chain.order_by(:name.asc).paginate(:page => params[:page],:per_page =>10)
  end

end

CanCan 似乎没有调用集合 方法。我觉得应该是这样。

有已知的解决方法吗?我是在做傻事吗?

谢谢!

I think I am running into a conflict with two of my favorite gems. Consider the following:

class AccountsController < InheritedResources::Base
  load_and_authorize_resource

  def collection
    @accounts ||= end_of_association_chain.order_by(:name.asc).paginate(:page => params[:page],:per_page =>10)
  end

end

It does not seem the CanCan calls the collection method. I feel that it should.

Is there a known work around? Am I doing something silly?

Thanks!

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

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

发布评论

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

评论(1

何其悲哀 2024-10-24 01:18:23

经过长时间的讨论,这似乎不会得到支持。查看此线程以进行推理和解决方法:https://github.com/ryanb/cancan /issues/274#comment_888081

It seems after lengthy discussion -- that this will not be supported. Check out this thread for reasoning and work around: https://github.com/ryanb/cancan/issues/274#comment_888081

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