mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-13 16:22:39 +10:00
17 lines
445 B
TypeScript
17 lines
445 B
TypeScript
import aclManager from "~/server/internal/acls";
|
|
import prisma from "~/server/internal/db/database";
|
|
|
|
export default defineEventHandler(async (h3) => {
|
|
const allowed = await aclManager.allowSystemACL(h3, ["redist:read"]);
|
|
if (!allowed) throw createError({ statusCode: 403 });
|
|
|
|
return await prisma.redist.findMany({
|
|
select: {
|
|
id: true,
|
|
mName: true,
|
|
mShortDescription: true,
|
|
mIconObjectId: true,
|
|
},
|
|
});
|
|
});
|