fixxed
This commit is contained in:
@@ -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 },
|
||||
|
||||
Reference in New Issue
Block a user