mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 03:23:38 +08:00
1a78e12f4e
- moderation tab - sorting/pagination - improved third party reports support - trending charts - better perf - many fixes - refactoring - new reports Co-Authored-By: Simon Cossar <scossar@users.noreply.github.com>
80 lines
2.5 KiB
JavaScript
80 lines
2.5 KiB
JavaScript
export default {
|
|
"/admin/reports/signups": {
|
|
report: {
|
|
type: "signups",
|
|
title: "Signups",
|
|
xaxis: "Day",
|
|
yaxis: "Number of signups",
|
|
description: "New account registrations for this period",
|
|
data: [
|
|
{ x: "2018-06-16", y: 12 },
|
|
{ x: "2018-06-17", y: 16 },
|
|
{ x: "2018-06-18", y: 42 },
|
|
{ x: "2018-06-19", y: 38 },
|
|
{ x: "2018-06-20", y: 41 },
|
|
{ x: "2018-06-21", y: 32 },
|
|
{ x: "2018-06-22", y: 23 },
|
|
{ x: "2018-06-23", y: 23 },
|
|
{ x: "2018-06-24", y: 17 },
|
|
{ x: "2018-06-25", y: 27 },
|
|
{ x: "2018-06-26", y: 32 },
|
|
{ x: "2018-06-27", y: 7 }
|
|
],
|
|
start_date: "2018-06-16T00:00:00Z",
|
|
end_date: "2018-07-16T23:59:59Z",
|
|
prev_data: [
|
|
{ x: "2018-05-17", y: 32 },
|
|
{ x: "2018-05-18", y: 30 },
|
|
{ x: "2018-05-19", y: 12 },
|
|
{ x: "2018-05-20", y: 23 },
|
|
{ x: "2018-05-21", y: 50 },
|
|
{ x: "2018-05-22", y: 39 },
|
|
{ x: "2018-05-23", y: 51 },
|
|
{ x: "2018-05-24", y: 48 },
|
|
{ x: "2018-05-25", y: 37 },
|
|
{ x: "2018-05-26", y: 17 },
|
|
{ x: "2018-05-27", y: 6 },
|
|
{ x: "2018-05-28", y: 20 },
|
|
{ x: "2018-05-29", y: 37 },
|
|
{ x: "2018-05-30", y: 37 },
|
|
{ x: "2018-05-31", y: 37 },
|
|
{ x: "2018-06-01", y: 38 },
|
|
{ x: "2018-06-02", y: 23 },
|
|
{ x: "2018-06-03", y: 18 },
|
|
{ x: "2018-06-04", y: 39 },
|
|
{ x: "2018-06-05", y: 26 },
|
|
{ x: "2018-06-06", y: 39 },
|
|
{ x: "2018-06-07", y: 52 },
|
|
{ x: "2018-06-08", y: 35 },
|
|
{ x: "2018-06-09", y: 19 },
|
|
{ x: "2018-06-10", y: 15 },
|
|
{ x: "2018-06-11", y: 31 },
|
|
{ x: "2018-06-12", y: 38 },
|
|
{ x: "2018-06-13", y: 30 },
|
|
{ x: "2018-06-14", y: 45 },
|
|
{ x: "2018-06-15", y: 37 },
|
|
{ x: "2018-06-16", y: 12 }
|
|
],
|
|
prev_start_date: "2018-05-17T00:00:00Z",
|
|
prev_end_date: "2018-06-17T00:00:00Z",
|
|
category_id: null,
|
|
group_id: null,
|
|
prev30Days: null,
|
|
dates_filtering: true,
|
|
report_key: "reports:signups::20180616:20180716::[:prev_period]:",
|
|
labels: [
|
|
{ type: "date", properties: ["x"], title: "Day" },
|
|
{ type: "number", properties: ["y"], title: "Count" }
|
|
],
|
|
processing: false,
|
|
average: false,
|
|
percent: false,
|
|
higher_is_better: true,
|
|
category_filtering: false,
|
|
group_filtering: true,
|
|
modes: ["table", "chart"],
|
|
prev_period: 961
|
|
}
|
|
}
|
|
};
|