Setup Pundit in Rails
Install gem
Configure Pundit
Include the Pundit
module in ApplicationController
.
Generate default application policy
This will create a new file: app/policies/application_policy.rb
.
Restart Rails server.
Add policy
You typically create a policy for each model in your app. For example, supposing you have a Post
mode, you’ll want to create a PostPolicy
at app/policies/post_policy
.
In a controller, you can do something like:
Thanks to naming conventions, Pundit will take the authorize @post
invocation and do something like this:
(Bonus) Add a owner?
method
You often need to only grant permission if a user owns a resource. To keep things DRY, consider adding a owner?
method to the base ApplicationPolicy
(app/policies/application_policy.rb
).
Now, you can just reuse this method in each model policy. For example, suppose you have QuotePolicy
.
Sources
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment