system_report.rb 374 B

123456789101112131415161718
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. require_dependency 'tasks/zammad/command.rb'
  3. module Tasks
  4. module Zammad
  5. class SystemReport < Tasks::Zammad::Command
  6. def self.description
  7. 'Fetches the system report.'
  8. end
  9. def self.task_handler
  10. puts ::SystemReport.fetch.to_json
  11. end
  12. end
  13. end
  14. end