Files
drop/server/api/v1/notifications/readall.post.ts
2025-04-15 21:46:34 -04:00

27 lines
614 B
TypeScript

import aclManager from "~/server/internal/acls";
import prisma from "~/server/internal/db/database";
export default defineEventHandler(async (h3) => {
const userId = await aclManager.getUserIdACL(h3, ["notifications:mark"]);
if (!userId) throw createError({ statusCode: 403 });
const userIds = [userId];
const hasSystemPerms = await aclManager.allowSystemACL(h3, [
"notifications:mark",
]);
if (hasSystemPerms) {
userIds.push("system");
}
await prisma.notification.updateMany({
where: {
userId: { in: userIds },
},
data: {
read: true,
},
});
return;
});