Skip to content

Instantly share code, notes, and snippets.

@xenda
Created May 29, 2012 18:37
Show Gist options
  • Save xenda/2829938 to your computer and use it in GitHub Desktop.
Save xenda/2829938 to your computer and use it in GitHub Desktop.
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