tap/app/models/ability.rb
2014-12-15 19:43:02 +01:00

14 lines
236 B
Ruby

class Ability
include CanCan::Ability
def initialize(user)
user ||= User.new # guest user (not logged in)
if user.admin?
can :manage, :all
can :schulden, :admins
else
can :read, :all
end
end
end