Update packages/backend/src/server/api/endpoints/users.ts
This commit is contained in:
parent
d98df9edf1
commit
04a6df59db
|
@ -74,7 +74,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
||||||
}
|
}
|
||||||
const chartUsers: { userId: string; count: number; }[] = [];
|
const chartUsers: { userId: string; count: number; }[] = [];
|
||||||
if (ps.sort?.endsWith('pv')) {
|
if (ps.sort?.endsWith('pv')) {
|
||||||
await this.perUserPvChart.getChartUsers('hour', 0, null, ps.limit, ps.offset).then(users => {
|
await this.perUserPvChart.getChartUsers('day', 0, null, ps.limit, ps.offset).then(users => {
|
||||||
chartUsers.push(...users);
|
chartUsers.push(...users);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue