Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.rdoc #181

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,12 @@ returns all employee records that the current user is authorized to read. In
addition, just like normal named scopes, query rewriting may be chained with
the usual find method:

Employee.with_permissions_to(:read).find(:all, :conditions => ...)
Employee.with_permissions_to(:read).where(conditions).all

If you need to specify a specific user who is not the current_user, you can
specify the user explicitely this way:

Employee.with_permissions_to(:read, user: user)

If the current user is completely missing the permissions, an
Authorization::NotAuthorized exception is raised. Through
Expand Down