Productionize EventSphere platform

This commit is contained in:
Austin A
2026-04-25 21:02:19 +01:00
commit 1f1d30a9f5
171 changed files with 18682 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import { Injectable } from "@nestjs/common";
import { PrismaService } from "../../prisma/prisma.service";
@Injectable()
export class RsvpsService {
constructor(private readonly prisma: PrismaService) {}
findAll(tenantId: string) {
return this.prisma.rSVP.findMany({
where: { tenantId },
orderBy: { createdAt: "desc" },
include: { event: true, invitee: true }
});
}
}