Created
May 29, 2012 18:37
-
-
Save xenda/2829938 to your computer and use it in GitHub Desktop.
This file contains 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
if user.role? :moderator | |
can :manage, Post | |
can :edit, Comment | |
end | |
if user.role? :admin | |
can :manage, Thread | |
end | |
if user.role? :superadmin | |
can :manage, :all | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment