Skip to content

Commit

Permalink
fix: change checkin reminder message to 7:00PM on Friday
Browse files Browse the repository at this point in the history
  • Loading branch information
rutmanz committed Oct 20, 2024
1 parent 3c2a40d commit 704d023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tasks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 704d023

Please sign in to comment.