create a new iCalendar instance in the calendar/:name end point

This commit is contained in:
Ryan Mwangi 2024-10-29 02:29:29 +03:00
parent a00321c922
commit 4310d3f395
1 changed files with 4 additions and 1 deletions

View File

@ -138,6 +138,9 @@ app.get('/calendar/:name', async (req, res) => {
// Filter out any failed requests
const validResults = results.filter((result) => result !== null);
// Create a new iCalendar instance
const calendar = icalGenerator({ name: calendarName });
// Parse calendar data
const mergedCal = [];
validResults.forEach((result) => {