A have a bunch of controllers w/ the Admin namespace. I want to restrict access to these unless the user is an admin. Is there a way to do this using CanCan without having to call unautorized! in every method of every controller?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Add an application controller to your namespace and a before filter to it.
|
||||
|
|
|
now rails_admin has full support with Cancan, you can find it in its official website, there is a wiki page for this topic: |
|||
|
|
|
The Admin Namespaces wiki page for CanCan lists out several solutions to this problem.
|
|||
|
|