私はroutes.rbを持っています:
resource :account, :only => [:show, :update]
私のability.rbには、
can :read, Account, :id => user.account_id
AccountsController で def update および def show 関数を定義しました
この構成により、/account に対して GET 要求を実行すると、403 アクセス拒否エラーが発生します。しかし、自分のability.rbを
can :manage, Account, :id => user.account_id
それは正常に動作します。:show 関数が :read にマップされていない理由は何ですか?