我使用声明式授权gem,在我的authorization_rules.rb中我有以下规则:
role :admin do
has_permission_on :users, :to => [manually set up all actions in this controller]
end
是否存在更优雅的方式来设置相应控制器中所有操作的访问权限?我尝试了这些方法
role :admin do has_permission_on :users, :to => :all end role :admin do has_permission_on :users end
但没有什么对我有用。有没有比盲目地输入每一个动作更好的方法来设置控制器中的所有动作?