v1.18.x
Julian Lam 11 years ago
parent 067d1ae404
commit 6eef866320

@ -9,19 +9,18 @@ var winston = require('winston'),
module.exports = function(User) { module.exports = function(User) {
User.startJobs = function() { User.startJobs = function() {
new cronJob('0 0 17 * * *', function() { new cronJob('0 0 17 * * *', function() {
winston.verbose('[user.startJobs] Digest job (daily) scheduled.'); winston.verbose('[user.startJobs] Digest job (daily) started.');
User.digest.execute('day'); User.digest.execute('day');
}, null, true); }, null, true);
new cronJob('0 0 17 * * 0', function() { new cronJob('0 0 17 * * 0', function() {
winston.verbose('[user.startJobs] Digest job (weekly) scheduled.'); winston.verbose('[user.startJobs] Digest job (weekly) started.');
User.digest.execute('week'); User.digest.execute('week');
}, null, true); }, null, true);
new cronJob('0 0 17 1 * *', function() { new cronJob('0 0 17 1 * *', function() {
winston.verbose('[user.startJobs] Digest job (monthly) scheduled.'); winston.verbose('[user.startJobs] Digest job (monthly) started.');
User.digest.execute('month'); User.digest.execute('month');
}, null, true); }, null, true);
}; };

@ -19,7 +19,7 @@
<!-- IF recent.length --> <!-- IF recent.length -->
<!-- BEGIN recent --> <!-- BEGIN recent -->
<li style="text-decoration: none; list-style-type: none; padding-bottom: 0.5em;"> <li style="text-decoration: none; list-style-type: none; padding-bottom: 0.5em;">
<a href="{url}/topic/{recent.slug}"><img style="vertical-align: middle; width: 16px; height: 16px; padding-right: 1em;" src="{recent.teaser.user.picture}" title="{recent.teaser.user.username}" />{recent.title}</a> <a href="{url}/topic/{recent.slug}"><img style="vertical-align: middle; width: 16px; height: 16px; padding-right: 1em;" src="<!-- IF recent.teaser -->{recent.teaser.user.picture}<!-- ELSE -->{recent.user.picture}<!-- ENDIF recent.teaser -->" title="<!-- IF recent.teaser -->{recent.teaser.user.username}<!-- ELSE -->{recent.user.username}<!-- ENDIF recent.teaser -->" />{recent.title}</a>
</li> </li>
<!-- END recent --> <!-- END recent -->
<!-- ELSE --> <!-- ELSE -->

Loading…
Cancel
Save