mirror of
https://github.com/discourse/discourse.git
synced 2025-01-19 15:22:44 +08:00
32 lines
713 B
Ruby
32 lines
713 B
Ruby
|
Report.add_report("top_referred_topics") do |report|
|
||
|
report.category_filtering = true
|
||
|
|
||
|
report.modes = [:table]
|
||
|
|
||
|
report.labels = [
|
||
|
{
|
||
|
type: :topic,
|
||
|
properties: {
|
||
|
title: :topic_title,
|
||
|
id: :topic_id
|
||
|
},
|
||
|
title: I18n.t("reports.top_referred_topics.labels.topic")
|
||
|
},
|
||
|
{
|
||
|
property: :num_clicks,
|
||
|
type: :number,
|
||
|
title: I18n.t("reports.top_referred_topics.labels.num_clicks")
|
||
|
}
|
||
|
]
|
||
|
|
||
|
options = {
|
||
|
end_date: report.end_date,
|
||
|
start_date: report.start_date,
|
||
|
limit: report.limit || 8,
|
||
|
category_id: report.category_id
|
||
|
}
|
||
|
result = nil
|
||
|
result = IncomingLinksReport.find(:top_referred_topics, options)
|
||
|
report.data = result.data
|
||
|
end
|