From 704d023464570ec936d8c62c31b0b9049636bace Mon Sep 17 00:00:00 2001 From: Zach R Date: Sun, 20 Oct 2024 09:43:05 -0700 Subject: [PATCH] fix: change checkin reminder message to 7:00PM on Friday --- src/tasks/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tasks/index.ts b/src/tasks/index.ts index 8aeee06..ab5b21d 100644 --- a/src/tasks/index.ts +++ b/src/tasks/index.ts @@ -61,7 +61,7 @@ export function scheduleTasks() { tasks['Logout All'] = scheduleCronTask(createTaskFunc(logoutAll), '0 0 * * *') // Slack is silly and can only handle 5 items in the overflow menu - scheduleCronTask(createTaskFunc(promptCheckinMessage), '0 9 * * SAT') + scheduleCronTask(createTaskFunc(promptCheckinMessage), '0 19 * * FRI') scheduleTask(syncSlackMembers, 60 * 60, isProd, 0) // can be run from the admin members page scheduleTask(updateProfileCerts, 60 * 60 * 24, isProd, 5 * 60) }