email_address_policy.rb 207 B

1234567
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class EmailAddressPolicy < ApplicationPolicy
  3. def show?
  4. user.permissions?(['ticket.agent', 'admin.channel_email'])
  5. end
  6. end