mirror of
https://github.com/umami-software/umami.git
synced 2026-02-08 06:37:18 +01:00
add orderby to query.
This commit is contained in:
parent
e68d1b3233
commit
300a0f63e7
2 changed files with 2 additions and 14 deletions
|
|
@ -39,13 +39,7 @@ export default async (
|
|||
return unauthorized(res);
|
||||
}
|
||||
|
||||
const { page, query, pageSize } = req.query;
|
||||
|
||||
const teams = await getUserTeams(userId as string, {
|
||||
query,
|
||||
page,
|
||||
pageSize,
|
||||
});
|
||||
const teams = await getUserTeams(userId as string, req.query);
|
||||
|
||||
return ok(res, teams);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue