adjust booking file

pull/9078/head
Syed Ali Shahbaz 2022-06-10 11:46:51 +05:30 committed by GitHub
parent 664e697d40
commit 542beb0079
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -84,15 +84,17 @@ async function createOrlistAllBookings(
if (booking) { if (booking) {
res.status(201).json({ booking, message: "Booking created successfully" }); res.status(201).json({ booking, message: "Booking created successfully" });
// Send Webhook call if hooked to BOOKING_CREATED & BOOKING_RESCHEDULED // Create Calendar Event for webhook payload
// const eventTrigger: WebhookTriggerEvents = rescheduleUid ? "BOOKING_RESCHEDULED" : "BOOKING_CREATED";
// Send Webhook call if hooked to BOOKING_CREATED & BOOKING_RESCHEDULED
// const eventTrigger = WebhookTriggerEvents.BOOKING_CREATED;
// const subscriberOptions = { // const subscriberOptions = {
// userId: user.id, // userId: user.id,
// eventTypeId, // eventTypeId,
// triggerEvent: eventTrigger, // triggerEvent: eventTrigger,
// }; // };
// const subscribers = await getSubscribers(subscriberOptions); // const subscribers = await getWebhooks(subscriberOptions);
// const bookingId = booking?.id; // const bookingId = booking?.id;
// const promises = subscribers.map((sub) => // const promises = subscribers.map((sub) =>
// sendPayload(eventTrigger, new Date().toISOString(), sub, { // sendPayload(eventTrigger, new Date().toISOString(), sub, {