mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:06:57 +08:00
e733701887
This commit also adds 'include subcategories' report filter
19 lines
841 B
Ruby
19 lines
841 B
Ruby
# frozen_string_literal: true
|
|
|
|
Report.add_report('time_to_first_response') do |report|
|
|
category_filter = report.filters.dig(:category)
|
|
category_id, include_subcategories = report.add_category_filter
|
|
|
|
report.icon = 'reply'
|
|
report.higher_is_better = false
|
|
report.data = []
|
|
|
|
Topic.time_to_first_response_per_day(report.start_date, report.end_date, category_id: category_id, include_subcategories: include_subcategories).each do |r|
|
|
report.data << { x: r['date'], y: r['hours'].to_f.round(2) }
|
|
end
|
|
|
|
report.total = Topic.time_to_first_response_total(category_id: category_id, include_subcategories: include_subcategories)
|
|
|
|
report.prev30Days = Topic.time_to_first_response_total(start_date: report.start_date - 30.days, end_date: report.start_date, category_id: category_id, include_subcategories: include_subcategories)
|
|
end
|