mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-05 03:41:24 +08:00
Adds a report to show the top 100 most viewed topics in a date range, combining logged in and anonymous views. Can be filtered by category. This is a followup to527f02e99fandd1191b7f5f. We are also going to be able to see this data in a new topic map, but this admin report helps to see an overview across the forum for a date range.
8 lines
175 B
Ruby
8 lines
175 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:topic_view_stat) do
|
|
topic { Fabricate(:topic) }
|
|
viewed_at { Time.zone.now }
|
|
anonymous_views { 1 }
|
|
logged_in_views { 1 }
|
|
end
|