Created
July 10, 2011 18:50
-
-
Save cmaujean/1074840 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Content Manager | |
# – can access overview, reports, events, faq, snippets, and pages. | |
class ContentAbility | |
include CanCan::Ability | |
def initialize(user) | |
if user.has_role?(:content) | |
can :manage, :all | |
cannot :manage, Product | |
cannot :manage, Configuration | |
cannot :manage, Order | |
cannot :manage, Promotion | |
cannot :manage, User | |
can :read, User do |resource| | |
resource == user | |
end | |
can :update, User do |resource| | |
resource == user | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment