feat: implement automated job cleanup, update notification presets, and upgrade Baileys library

This commit is contained in:
2026-07-21 21:12:29 -03:00
parent aac53e13cc
commit 98f0ec3102
8 changed files with 388 additions and 35 deletions
@@ -25,9 +25,12 @@ const CHANNELS: { key: NotificationChannel; label: string }[] = [
];
const REMINDER_PRESETS: { minutes: number; label: string }[] = [
{ minutes: 2, label: "2 minutos antes" },
{ minutes: 5, label: "5 minutos antes" },
{ minutes: 10, label: "10 minutos antes" }
{ minutes: 60, label: "1 hora antes" },
{ minutes: 180, label: "3 horas antes" },
{ minutes: 360, label: "6 horas antes" },
{ minutes: 720, label: "12 horas antes" },
{ minutes: 1440, label: "1 día antes" },
{ minutes: 2880, label: "2 días antes" }
];
export default function NotificationsPage() {