Skip to content

Instantly share code, notes, and snippets.

@Phoenix23A
Created February 22, 2017 18:53
Show Gist options
  • Save Phoenix23A/436e8ddab71c059dd469c38cfbd39db4 to your computer and use it in GitHub Desktop.
Save Phoenix23A/436e8ddab71c059dd469c38cfbd39db4 to your computer and use it in GitHub Desktop.
class Ability
include CanCan::Ability
def initialize(user)
user ||= User.new # guest user (not logged in)
can :manage, User, id: user.id
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment