mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-13 16:22:39 +10:00
feat(notifications): added notification system w/ interwoven refactoring
This commit is contained in:
17
server/api/v1/notifications/index.get.ts
Normal file
17
server/api/v1/notifications/index.get.ts
Normal file
@ -0,0 +1,17 @@
|
||||
import prisma from "~/server/internal/db/database";
|
||||
|
||||
export default defineEventHandler(async (h3) => {
|
||||
const userId = await h3.context.session.getUserId(h3);
|
||||
if (!userId) throw createError({ statusCode: 403 });
|
||||
|
||||
const notifications = await prisma.notification.findMany({
|
||||
where: {
|
||||
userId,
|
||||
},
|
||||
orderBy: {
|
||||
created: "desc", // Newest first
|
||||
},
|
||||
});
|
||||
|
||||
return notifications;
|
||||
});
|
||||
Reference in New Issue
Block a user