rez_core 2.2.186 → 2.2.188
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -442,7 +442,7 @@ export class TaskService extends EntityServiceImpl {
|
|
|
442
442
|
return await super.createEntity(notePayload, loggedInUser);
|
|
443
443
|
}
|
|
444
444
|
|
|
445
|
-
@Cron(CronExpression.
|
|
445
|
+
@Cron(CronExpression.EVERY_30_SECONDS)
|
|
446
446
|
async fetchTasksDueIn30Mins() {
|
|
447
447
|
const now = new Date();
|
|
448
448
|
const in30Min = new Date(now.getTime() + 30 * 60 * 1000);
|