forked from ryanmwangi/CalMerger
create a new iCalendar instance in the calendar/:name end point
This commit is contained in:
parent
a00321c922
commit
4310d3f395
|
@ -87,7 +87,7 @@ app.post('/merge', async (req, res) => {
|
|||
|
||||
// Save the calendar to a file
|
||||
fs.writeFileSync(`${MERGED_CALENDARS_DIR}/${filename}`, calendar.toString());
|
||||
|
||||
|
||||
// Save the user input and sanitizedLinkGroupName in a separate JSON file
|
||||
saveCalendarData(sanitizedLinkGroupName, linkGroupName, calendars);
|
||||
|
||||
|
@ -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) => {
|
||||
|
|
Loading…
Reference in New Issue