mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:15:28 +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>
36 lines
1.0 KiB
JavaScript
36 lines
1.0 KiB
JavaScript
export default {
|
|
"/admin/reports/signups_timeout": {
|
|
report: {
|
|
type: "signups",
|
|
title: "Signups",
|
|
xaxis: "Day",
|
|
yaxis: "Number of signups",
|
|
description: "New account registrations for this period",
|
|
data: null,
|
|
start_date: "2018-06-16T00:00:00Z",
|
|
end_date: "2018-07-16T23:59:59Z",
|
|
prev_data: null,
|
|
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_timeout::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,
|
|
timeout: true
|
|
}
|
|
}
|
|
};
|