Alert system

This commit is contained in:
Marcelo
2026-01-15 21:03:41 +00:00
parent 9f1af71d15
commit 0f88207f3f
20 changed files with 1791 additions and 145 deletions

View File

@@ -14,7 +14,7 @@ export async function GET() {
const user = await prisma.user.findUnique({
where: { id: userId },
select: { id: true, email: true, name: true },
select: { id: true, email: true, name: true, phone: true },
});
const org = await prisma.org.findUnique({