Add DELETE endpoint for events with cascade deletion of RSVPs

This commit is contained in:
2025-04-30 18:00:56 -04:00
parent 48d96e4b69
commit bada79ed62

View File

@@ -69,6 +69,27 @@ app.post('/api/events', async (req: Request, res: Response) => {
} }
}); });
app.delete('/api/events/:slug', async (req: Request, res: Response) => {
try {
const { slug } = req.params;
// First check if the event exists
const eventRows = await db.all('SELECT id FROM events WHERE slug = ?', [slug]);
if (eventRows.length === 0) {
return res.status(404).json({ error: 'Event not found' });
}
// Delete the event (RSVPs will be automatically deleted due to ON DELETE CASCADE)
await db.run('DELETE FROM events WHERE slug = ?', [slug]);
res.status(204).send();
} catch (error) {
console.error('Error deleting event:', error);
res.status(500).json({ error: 'Internal server error' });
}
});
// RSVP routes // RSVP routes
app.get('/api/events/:slug/rsvps', async (req: Request, res: Response) => { app.get('/api/events/:slug/rsvps', async (req: Request, res: Response) => {
try { try {