mirror of
https://github.com/umami-software/umami.git
synced 2026-02-07 06:07:17 +01:00
Converted admin, auth, me and realtime routes.
This commit is contained in:
parent
6c9f1ad06b
commit
5205551ca8
25 changed files with 346 additions and 7 deletions
39
src/app/api/admin/users/route.ts
Normal file
39
src/app/api/admin/users/route.ts
Normal 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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue