Added Chat Page

This commit is contained in:
2026-01-21 18:13:35 +01:00
parent 0ca8ce8b52
commit 3eed79ca93
37 changed files with 3966 additions and 64 deletions

View File

@@ -15,7 +15,9 @@ export async function GET(request: NextRequest) {
const startDate = searchParams.get('startDate');
const endDate = searchParams.get('endDate');
const where: any = {};
const where: any = {
archived: false, // Exclure les trajets archivés par défaut
};
// Filtrer par date si fourni
if (startDate || endDate) {