13 lines
223 B
Ruby
13 lines
223 B
Ruby
class Ability
|
|
include CanCan::Ability
|
|
|
|
def initialize(user)
|
|
user ||= User.new # guest user (not logged in)
|
|
|
|
if user.penning?
|
|
can :manage, :all
|
|
else
|
|
can :read, user, id: user.id
|
|
end
|
|
end
|
|
end
|