1

我想我遇到了兩個我最喜歡的寶石衝突。考慮以下幾點:cancan和inherited_resources覆蓋集合

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 

它似乎沒有慘慘調用收集方法。我覺得它應該。

是否有已知的解決方法?我在做一些愚蠢的事情嗎?

謝謝!

回答