chore: improve the ui

This commit is contained in:
pit
2023-09-29 17:12:02 +01:00
parent 07bf780c3e
commit f1bc772985
4 changed files with 149 additions and 9 deletions

View File

@ -23,6 +23,11 @@ export const findUsers = async ({ page = 1, perPage = 10 }: getAllUsersProps) =>
periodEnd: true,
},
},
Document: {
select: {
id: true,
},
},
},
skip: Math.max(page - 1, 0) * perPage,
take: perPage,