Well you never told us what wrong behavior you are seeing.
However, I notice that:
> role :guest do
> has_permission_on :publishers, :to => [:manage,:read]
> end
is inconsistent with:
> When a guest logs in he has an authority to view, edit and show,create but
> not delete a publisher.
Since the :manage privilege seems to be set up to give all permissions.
Perhaps you meant
role :guest do
has_permission_on :publishers, :to => [:read, :create, :update]
end
--
Rick DeNatale
Blog: http://talklikeaduck.denhaven2.com/
Twitter: http://twitter.com/RickDeNatale
WWR: http://www.workingwithrails.com/person/9021-rick-denatale
LinkedIn: http://www.linkedin.com/in/rickdenatale
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonra...@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-ta...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.