21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-12 21:48:38 +02:00
chexpire/app/policies/notification_policy.rb
2018-06-04 20:39:53 +02:00

22 lines
292 B
Ruby

class NotificationPolicy < ApplicationPolicy
class Scope < Scope
def resolve
scope.joins(:check).where(checks: { user: user })
end
end
def destroy?
check_owner?
end
def show?
false
end
private
def check_owner?
record.check.user == user
end
end