We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1b14eff + 92685aa commit fdec359Copy full SHA for fdec359
1 file changed
apps/api/src/scheduler/scheduler.service.ts
@@ -11,9 +11,9 @@ export class SchedulerService {
11
12
/**
13
* Send daily prompts to all users with 'daily' frequency
14
- * Runs every day at 9:00 AM
+ * Runs every day at noon (12:00 PM)
15
*/
16
- @Cron(CronExpression.EVERY_DAY_AT_9AM)
+ @Cron(CronExpression.EVERY_DAY_AT_NOON)
17
async sendDailyPrompts() {
18
this.logger.log('Starting daily prompt job...');
19
0 commit comments