You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nodebb/src/user/jobs.js

30 lines
738 B
JavaScript

'use strict';
var winston = require('winston'),
cronJob = require('cron').CronJob,
meta = require('../meta');
module.exports = function(User) {
User.startJobs = function() {
new cronJob('0 0 17 * * *', function() {
winston.verbose('[user.startJobs] Digest job (daily) started.');
User.digest.execute('day');
}, null, true);
new cronJob('0 0 17 * * 0', function() {
winston.verbose('[user.startJobs] Digest job (weekly) started.');
User.digest.execute('week');
}, null, true);
new cronJob('0 0 17 1 * *', function() {
winston.verbose('[user.startJobs] Digest job (monthly) started.');
User.digest.execute('month');
}, null, true);
new cronJob('0 0 0 * * *', User.reset.clean, null, true);
};
};