This commit is contained in:
DerJesen
2025-11-29 14:14:54 +01:00
parent cd6a832ad0
commit 1df2487d1c
4 changed files with 22 additions and 5 deletions

View File

@@ -59,6 +59,13 @@ export class TicketsService {
});
}
findOne(id: string) {
return this.prisma.ticket.findUnique({
where: { id },
include: { event: true },
});
}
async resendEmail(id: string) {
const ticket = await this.prisma.ticket.findUnique({
where: { id },