I have a Rails 3 application that has Categories. A category can be administered by somebody with the Category Owner role. But the Category Owner should only be able to access Categories that he owns, not others. I can lock down the admin functions using CanCan, but I need to restrict the specific categories themselves.
|
feedback
|
|
You can do it in one of two ways. You can either specify a hash of attributes to restrict access in your
Or you can use a block:
These both check whether the These are described under Defining Abilities with Hashes and Defining Abilities with Blocks respectively in the CanCan documentation. | |||
|
feedback
|