我有一个我正在尝试使用 cancan 授权的 non-restful 控制器!应用权限的方法。
我有一个这样开始的 delete_multiple 动作
def delete_multiple
@invoices = apparent_user.invoices.find(params[:invoice_ids])
我想在继续之前检查用户是否有权删除所有这些发票。如果我使用
authorize! :delete_multiple, @invoices
许可被拒绝。我的能力.rb 包括以下内容
if user.admin?
can :manage, :all
elsif user.approved_user?
can [:read, :update, :destroy, :delete_multiple], Invoice, :user_id => user.id
end
是循环遍历我的数组并单独调用授权的问题,还是有更聪明的做事方式?我开始觉得手动进行授权比将 cancan 用于复杂的 non-restful 控制器更容易(尽管我的应用程序中有很多其他的 restful 控制器,它们都很好用)。