Accidentally disabled the queue! Whoopsies

This commit is contained in:
Collin Duncan 2023-10-16 15:26:56 +02:00
parent d8370ee4b8
commit 4bb532b281
No known key found for this signature in database

View file

@ -111,7 +111,7 @@ export class ReservationsController {
return 'Reservation saved'
}
this.loggerService.debug('Reservation is available for reservation')
// await this.reservationsQueue.add(reservation)
await this.reservationsQueue.add(reservation)
return 'Reservation queued'
}