forked from ryanmwangi/CalMerger
create function to santize the linkGroupName for use as a filename
This commit is contained in:
parent
0f5563ab2a
commit
ad4f2faaca
|
@ -25,6 +25,11 @@ app.get('/', (req, res) => {
|
||||||
res.sendFile('index.html', { root: '.' });
|
res.sendFile('index.html', { root: '.' });
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Function to sanitize the linkGroupName for use as a filename
|
||||||
|
function sanitizeFilename(filename) {
|
||||||
|
return filename.replace(/[<>:"/\\|?*]/g, '_'); // Replace invalid characters with underscores
|
||||||
|
}
|
||||||
|
|
||||||
// Merge calendars endpoint
|
// Merge calendars endpoint
|
||||||
app.post('/merge', async (req, res) => {
|
app.post('/merge', async (req, res) => {
|
||||||
const { linkGroupName, calendars } = req.body;
|
const { linkGroupName, calendars } = req.body;
|
||||||
|
|
Loading…
Reference in New Issue