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