remove debugging output

This commit is contained in:
Thomas Ruoff
2020-09-03 23:28:24 +02:00
committed by Thomas Ruoff
parent 038e2b2420
commit 654b4d706c

View File

@@ -69,7 +69,6 @@ BookingSchema.virtual('days').get(function () {
})
BookingSchema.static('findBookedDays', async function (): Promise<string[]> {
console.log('in findBookedDays this is', this)
const bookings = await this.find(
{
status: { $in: [BOOKING_STATUS.REQUESTED, BOOKING_STATUS.CONFIRMED] },