mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:06:57 +08:00
11 lines
486 B
Ruby
11 lines
486 B
Ruby
Report.add_report("posts") do |report|
|
|
report.modes = [:table, :chart]
|
|
report.category_filtering = true
|
|
basic_report_about report, Post, :public_posts_count_per_day, report.start_date, report.end_date, report.category_id
|
|
countable = Post.public_posts.where(post_type: Post.types[:regular])
|
|
if report.category_id
|
|
countable = countable.joins(:topic).merge(Topic.in_category_and_subcategories(report.category_id))
|
|
end
|
|
add_counts report, countable, 'posts.created_at'
|
|
end
|