Skip to content

Instantly share code, notes, and snippets.

@xander-miller
Created March 5, 2014 18:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xander-miller/9373269 to your computer and use it in GitHub Desktop.
Save xander-miller/9373269 to your computer and use it in GitHub Desktop.
class Ability
include CanCan::Ability
def initialize(user)
user ||= User.new # guest user
# if a member, they can manage their own posts
# (or create new ones)
if user.role? :member
can :manage, Wiki, private: true, Wiki.collaborators do |collaborator|
collaborator.user_id == user.id
end
end
#...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment