mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
27 lines
614 B
TypeScript
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;
|
|
});
|