online_notification_policy.rb 281 B

123456789101112131415161718192021
  1. # Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/
  2. class OnlineNotificationPolicy < ApplicationPolicy
  3. def show?
  4. owner?
  5. end
  6. def destroy?
  7. owner?
  8. end
  9. def update?
  10. owner?
  11. end
  12. private
  13. def owner?
  14. user == record.user
  15. end
  16. end