added sorvor admin page
Some checks failed
backend-admin-action / build-image (push) Failing after 8s
backend-action / build-image (push) Failing after 1m40s

This commit is contained in:
2024-05-20 16:48:06 +07:00
parent 98a65043c9
commit 23f37df217
14 changed files with 137 additions and 28 deletions

View File

@@ -10,7 +10,7 @@ export default async function Page() {
.findMany({ with: { zones: true } })
.execute();
const jobList = await db.query.group.findMany().execute();
let r = await db.query.user
const r = await db.query.user
.findMany({ columns: { id: true }, where: eq(user.verified, true) })
.execute()
.then((v) => v.length);