notifications
Deploy / deploy (push) Successful in 2m32s

This commit is contained in:
twotalesanimation
2026-06-19 13:25:19 +02:00
parent 1a77a82566
commit 835081c1b9
3 changed files with 242 additions and 55 deletions
+42
View File
@@ -0,0 +1,42 @@
import { NextResponse } from "next/server";
import { auth } from "@/auth";
import { db } from "@/lib/db";
// Mark a single notification as read
export async function PATCH(
_req: Request,
{ params }: { params: Promise<{ id: string }> }
) {
const session = await auth();
if (!session?.user) {
return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
}
const { id } = await params;
await db.notification.updateMany({
where: { id, userId: session.user.id },
data: { isRead: true },
});
return NextResponse.json({ success: true });
}
// Dismiss (delete) a single notification
export async function DELETE(
_req: Request,
{ params }: { params: Promise<{ id: string }> }
) {
const session = await auth();
if (!session?.user) {
return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
}
const { id } = await params;
await db.notification.deleteMany({
where: { id, userId: session.user.id },
});
return NextResponse.json({ success: true });
}
+15
View File
@@ -21,6 +21,7 @@ export async function GET() {
return NextResponse.json({ notifications, unreadCount });
}
// Mark all as read
export async function PATCH() {
const session = await auth();
if (!session?.user) {
@@ -34,3 +35,17 @@ export async function PATCH() {
return NextResponse.json({ success: true });
}
// Clear all notifications
export async function DELETE() {
const session = await auth();
if (!session?.user) {
return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
}
await db.notification.deleteMany({
where: { userId: session.user.id },
});
return NextResponse.json({ success: true });
}