Can anyone explain to me how CanCan's accessibly_by works? How does it know what the relationship is between the user and the thing that needs restricting?

link|improve this question

38% accept rate
feedback

2 Answers

There is a great railscast about CanCan (made by its creator):

http://railscasts.com/episodes/192-authorization-with-cancan

link|improve this answer
feedback

It checks the current user against a set of rules described in the abilities initializer

Which includes CanCan::Ability.

When you call accessible_by it checks the rules specifed in the Ability class, and returns the records that the user has access to.

The gems wiki is very good... here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.