mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 03:42:16 +08:00
13 lines
455 B
Ruby
13 lines
455 B
Ruby
Report.add_report('topics') do |report|
|
|
category_filter = report.filters.dig(:category)
|
|
report.add_filter('category', default: category_filter)
|
|
|
|
basic_report_about report, Topic, :listable_count_per_day, report.start_date, report.end_date, category_filter
|
|
|
|
countable = Topic.listable_topics
|
|
if category_filter
|
|
countable = countable.in_category_and_subcategories(category_filter)
|
|
end
|
|
add_counts report, countable, 'topics.created_at'
|
|
end
|