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
712 B
JavaScript

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