我需要检查:阅读?在控制台中的对象上,我该怎么做?
最佳答案
您需要设置能力对象:
ability = Ability.new(current_user_object)
现在,您检查授权:
ability.can? :read, object_to_be_checked
关于ruby-on-rails-3 - 如何在控制台中测试CanCan?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6018708/
我需要检查:阅读?在控制台中的对象上,我该怎么做?
最佳答案
您需要设置能力对象:
ability = Ability.new(current_user_object)
ability.can? :read, object_to_be_checked
关于ruby-on-rails-3 - 如何在控制台中测试CanCan?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6018708/