tap/app/models/ability.rb

16 lines
286 B
Ruby
Raw Normal View History

2014-12-09 19:44:58 +01:00
class Ability
include CanCan::Ability
def initialize(user)
user ||= User.new # guest user (not logged in)
if user.admin?
can :manage, :all
2014-12-15 19:43:02 +01:00
can :schulden, :admins
2015-01-06 20:18:01 +01:00
elsif user.koelkast?
can :manage, Order
2014-12-09 19:44:58 +01:00
else
can :read, :all
end
end
end