channel.rb 331 B

123456789
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class SystemReport::Plugin::Channel < SystemReport::Plugin
  3. DESCRIPTION = __('Lists active channels (e.g. 1 Telegram channel, 2 Microsoft channels and 1 Google channel)').freeze
  4. def fetch
  5. ::Channel.where(active: true).map(&:area).tally
  6. end
  7. end