Converted admin, auth, me and realtime routes.

This commit is contained in:
Mike Cao 2025-01-28 22:29:03 -08:00
parent 6c9f1ad06b
commit 5205551ca8
25 changed files with 346 additions and 7 deletions

View file

@ -0,0 +1,39 @@
import { z } from 'zod';
import { parseRequest } from 'lib/request';
import { json, unauthorized } from 'lib/response';
import { pagingParams } from 'lib/schema';
import { canViewUsers } from 'lib/auth';
import { getUsers } from 'queries/prisma/user';
export async function GET(request: Request) {
const schema = z.object({
...pagingParams,
});
const { auth, query, error } = await parseRequest(request, schema);
if (error) {
return error();
}
if (!(await canViewUsers(auth))) {
return unauthorized();
}
const users = await getUsers(
{
include: {
_count: {
select: {
websiteUser: {
where: { deletedAt: null },
},
},
},
},
},
query,
);
return json(users);
}