Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using the gems CanCan and authlogic. I tried according to the CanCan turorial these solutions:

ability.rb :

     user ||= User.new # guest user (not logged in)
  if user.role == "admin"
     can :manage, :all
   else
     can :read, :all
     cannot :update, :all, :message  => "Not authorized!"
   end

And in applications controller:

  rescue_from CanCan::AccessDenied do |exception|
  redirect_to root_url, :alert => exception.message

end

The error: NameError in UsersController#edit

undefined method `message' for :exception:Symbol

ApplicationTrace: app/models/ability.rb:14:in `initialize'

Without this part : , :message => "Not authorized!" it doesn't throw an error but also no message (what makes sense).

Also working with the language file seems to not help:

en:

hello: "Hello world" unauthorized: manage: all: "Not authorized to %{action} %{subject}." update: all: "Not allowed to update this project."

I also tried this which would be a worse solution but I don't get a flash error too.

  rescue_from CanCan::AccessDenied do |exception|
  flash[:error] = "Access denied!"
  redirect_to root_url, :alert => exception.message

end

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.