perform test

test to courses

Signed-off-by: Kenneth Obsequio <k80308392@gmail.com>
This commit is contained in:
2026-06-24 12:48:51 +08:00
parent 358fecb510
commit 9b8577b79b
27 changed files with 1122 additions and 221 deletions
+5 -2
View File
@@ -6,17 +6,20 @@
* { name, schedule, run }, listed in the `jobs` array below.
*
* Currently registered:
* - userNotifications (cron/jobs/user_notifications.cron.js)
* - userNotifications (cron/jobs/user_notifications.cron.js)
* - issueCertificates (cron/jobs/issue_certificates.cron.js)
*
* Author: Kenneth Obsequio (@lash0000)
* Date Created: Jun. 17, 2026
***********************************************************************************************************************************************************************/
const cron = require('node-cron');
const userNotifications = require('./jobs/user_notifications.cron');
const userNotifications = require('./jobs/user_notifications.cron');
const issueCertificates = require('./jobs/issue_certificates.cron');
// ─── Registry — add future client-side cron jobs here ────────────────────────
const jobs = [
userNotifications,
issueCertificates,
];
// ─── Boot all registered client-side jobs ─────────────────────────────────────