mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-10 04:22:09 +10:00
feat: user page & $dropFetch util
This commit is contained in:
22
server/api/v1/admin/users/index.get.ts
Normal file
22
server/api/v1/admin/users/index.get.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import aclManager from "~/server/internal/acls";
|
||||
import prisma from "~/server/internal/db/database";
|
||||
|
||||
export default defineEventHandler(async (h3) => {
|
||||
const allowed = await aclManager.allowSystemACL(h3, ["user:read"]);
|
||||
if (!allowed) throw createError({ statusCode: 403 });
|
||||
|
||||
const users = await prisma.user.findMany({
|
||||
where: {
|
||||
id: { not: "system" },
|
||||
},
|
||||
include: {
|
||||
authMecs: {
|
||||
select: {
|
||||
mec: true,
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
return users;
|
||||
});
|
||||
Reference in New Issue
Block a user