Suche: nur zukuenftige Kalendereintraege anzeigen

This commit is contained in:
2026-06-05 16:25:56 +02:00
parent 139f13e0aa
commit 197ea6fbff

View File

@@ -195,6 +195,7 @@ router.get('/', authenticate, (req, res) => {
JOIN calendar_feeds f ON f.id=c.feed_id
WHERE c.user_id=? AND f.user_id=?
AND (LOWER(c.summary) LIKE ? OR LOWER(c.description) LIKE ? OR LOWER(c.location) LIKE ?)
AND c.start_dt >= strftime('%Y%m%d', 'now')
ORDER BY c.start_dt LIMIT 8
`).all(uid, uid, like, like, like));