discourse/app/models/reports/topics.rb

13 lines
455 B
Ruby
Raw Normal View History

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