fix: Email notifcations now sent everyday at 3am

This commit is contained in:
Towfiq 2022-12-08 09:50:43 +06:00
parent a6af9d3475
commit f00006371d

View File

@ -50,7 +50,7 @@ const generateCronTime = (interval) => {
cronTime = '0 0 0 * * *';
}
if (interval === 'daily_morning') {
cronTime = '0 0 0 7 * *';
cronTime = '0 0 0 3 * *';
}
if (interval === 'weekly') {
cronTime = '0 0 0 */7 * *';