Skip to content

Instantly share code, notes, and snippets.

@holyketzer
Created December 9, 2013 10:47
Show Gist options
  • Save holyketzer/7870414 to your computer and use it in GitHub Desktop.
Save holyketzer/7870414 to your computer and use it in GitHub Desktop.
CanCan ability class
class Ability
include CanCan::Ability
def initialize(user)
# Define abilities for the passed in user here.
user ||= User.new # guest user (not logged in)
if user.admin?
can :manage, :all
end
# See the wiki for details:
# https://github.com/ryanb/cancan/wiki/Defining-Abilities
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment