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?

link|improve this question

69% accept rate
feedback

2 Answers

up vote 4 down vote accepted

Add an application controller to your namespace and a before filter to it.

class ApplicationController < ActionController::Base


class Admin::ApplicationController > ApplicationController 
  # these goes in your namespace admin folder
  before_filter :check_authorized

  def check_authorized
    redirect_to root_path unless can? :admin, :all


class SomeadminController > Admin::ApplicationController
   def some_action
     # do_stuff  
link|improve this answer
feedback

now rails_admin has full support with Cancan, you can find it in its official website, there is a wiki page for this topic:

Rails Admin's authorization with CanCan:

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.