I have a user model created with Devise that has an admin boolean field and a roles integer field. I am trying to create an ability class that allows a non admin user to have certain abilities based on roles, but am having issues with this process. I have created an authorized controller as such:
class AuthorizedController < ApplicationController
before_filter :authenticate_user!
check_authorization :unless => :devise_controller?
load_and_authorize_resource
rescue_from CanCan::AccessDenied do |exception|
flash[:alert] = exception.message
redirect_to root_url
end
end
class Ability
include CanCan::Ability
def initialize(user)
if !user
can :read, :all
end
if user
admin_rules if user.admin?
commenter_rules if user.role.equal?("1")
author_rules if user.role.equal?("2")
end
end
def admin_rules
can :manage, :all
end
def commenter_rules
can :manage, Data, :active => true, :user_id => user.id
end
def author_rules
can :manage, Post, :active => true, :user_id => user.id
end
end
Now whenever I try to access any pages, It throws the exception message "You are not authorized to access this page." instead of being able to access that part of the website.
:activeattribute coming from, Devise? – janders223 Oct 20 '11 at 0:44